We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b9440 commit 451e701Copy full SHA for 451e701
.gitignore
@@ -57,3 +57,6 @@ docs/_build/
57
*COMMIT_MSG
58
59
.qbcache/
60
+
61
+.idea/
62
agent_packager/packager.py
@@ -58,6 +58,7 @@ def _import_config(config_file=DEFAULT_CONFIG_FILE):
:param string config_file: path to config file
"""
+ config_file = os.path.expanduser(config_file)
lgr.debug('Importing config: {0}...'.format(config_file))
63
try:
64
with open(config_file, 'r') as c:
0 commit comments