Skip to content

Commit

Permalink
Fix wrong parameter order in function call(#189)
Browse files Browse the repository at this point in the history
Fixes: #189
  • Loading branch information
elbenfreund committed Jul 21, 2016
1 parent 1f23178 commit a792323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hamster_lib/helpers/config_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,5 @@ def get_config_instance(fallback_config_instance, app_name=DEFAULT_APP_NAME,
config = SafeConfigParser()
path = get_config_path(app_name)
if not config.read(path):
config = write_config_file(app_name, fallback_config_instance, file_name=file_name)
config = write_config_file(fallback_config_instance, app_name, file_name=file_name)
return config

0 comments on commit a792323

Please sign in to comment.