mirror of
https://github.com/gryf/slack-backup.git
synced 2025-12-17 11:30:25 +01:00
Superfast fix for non-existed config parameter in cmdline options
This commit is contained in:
@@ -53,7 +53,11 @@ class Config(object):
|
||||
|
||||
def load_config(self, args):
|
||||
|
||||
locations = [args.config,
|
||||
path = ''
|
||||
if hasattr(args, 'config') and args.config:
|
||||
path = args.config
|
||||
|
||||
locations = [path,
|
||||
'./slack-backup.conf',
|
||||
os.path.expandvars('$XDG_CONFIG_HOME/slack-backup.ini'),
|
||||
os.path.expandvars('$HOME/.config/slack-backup.ini')]
|
||||
|
||||
Reference in New Issue
Block a user