diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/__main__.py b/src/__main__.py index 54c8e94..b58cfdc 100755 --- a/src/__main__.py +++ b/src/__main__.py @@ -674,7 +674,7 @@ else: if config_file is None: # Possible auto-selected configuration scripts, # earlier ones have precedence, we can only select one. - for file in ('$XDG_CONFIG_HOME/%/%rc', '$HOME/.config/%/%rc', '$HOME/.%rc', '$~/.config/%/%rc', '$~/.%c', '/etc/%rc'): + for file in ('$XDG_CONFIG_HOME/%/%rc', '$HOME/.config/%/%rc', '$HOME/.%rc', '$~/.config/%/%rc', '$~/.%rc', '/etc/%rc'): # Expand short-hands file = file.replace('/', os.sep).replace('%', 'blueshift') # Expand environment variables |