aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmcwrapper4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcwrapper b/mcwrapper
index 57768c7..0a936fa 100755
--- a/mcwrapper
+++ b/mcwrapper
@@ -32,8 +32,8 @@ try:
except KeyError:
# Find configuration in predefined paths
for cf in __all_config_files__:
- if os.path.isfile(cf):
- __config_file__ = cf
+ if os.path.isfile(os.path.expanduser(cf)):
+ __config_file__ = os.path.expanduser(cf)
break
if __config_file__ == None: # If no configuration find. Set empty config
__set_empty_config__()