Skip to content

Commit

Permalink
Merge branch '1597-fix-using-development-ini'
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Nov 21, 2014
2 parents 479be73 + 8a77df4 commit 943bbb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/cli.py
Expand Up @@ -124,7 +124,7 @@ def _get_config(self):
self.filename = os.environ.get('CKAN_INI')
config_source = '$CKAN_INI'
else:
self.filename = 'development.ini'
self.filename = os.path.join(os.getcwd(), 'development.ini')
config_source = 'default value'

if not os.path.exists(self.filename):
Expand Down

0 comments on commit 943bbb0

Please sign in to comment.