Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix line too long
  • Loading branch information
Alison Wu authored and Alison Wu committed Nov 5, 2024
commit d24acb6305e6c9247618fc20b9633162b1096e79
2 changes: 1 addition & 1 deletion src/diffpy/utils/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get_user_info(args=None):
global_config = load_config(Path().home() / "diffpyconfig.json")
local_config = load_config(Path().cwd() / "diffpyconfig.json")
if global_config is None and local_config is None:
warnings.warn("No global config file, please follow prompts below. For more information, refer to www.diffpy.org/diffpy.utils/")
warnings.warn("No global config file, please follow prompts below.")
config_bool = _create_global_config(args)
global_config = load_config(Path().home() / "diffpyconfig.json")
config = _sorted_merge(clean_dict(global_config), clean_dict(local_config), clean_dict(args))
Expand Down