X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Futils%2Fstartopt.py;h=e39330431711290d09e4e0095a85146aca8d53b8;hb=e18be49d2739809a619626f8ddb51ce3f1838a19;hp=2081c19266951f3b215d6353cd0229467c75c47a;hpb=fe1ed51724531b8c1e78e7d7eb590c9be20e275c;p=mpd-sima.git diff --git a/sima/utils/startopt.py b/sima/utils/startopt.py index 2081c19..e393304 100644 --- a/sima/utils/startopt.py +++ b/sima/utils/startopt.py @@ -89,7 +89,7 @@ OPTS = [ configuration. You can put other options with this one to get them in\ the generated configuration.'}, { - 'sw':['--var_dir'], + 'sw':['--var-dir', '--var_dir'], 'dest': 'var_dir', 'action': Wdir, 'help': 'Directory to store var content (ie. database, cache)'}, @@ -106,14 +106,14 @@ OPTS = [ #'help': 'Queue mode in [track, top, album]', 'help': SUPPRESS, }, { - 'sw':['--purge_history'], + 'sw':['--purge-history'], 'action': 'store_true', 'dest': 'do_purge_history', 'help': SUPPRESS}, ] -class StartOpt(object): +class StartOpt: """Command line management. """