Seperate out even more, own dir for UIs
default UI is now in private/lib/uis/default.pypull/4/head
parent
5c6ecaf627
commit
192e70e4a2
@ -0,0 +1,6 @@
|
|||||||
|
import argparse
|
||||||
|
import lib.cwd
|
||||||
|
|
||||||
|
argparser = argparse.ArgumentParser(description='Tilde administration tools')
|
||||||
|
argparser.add_argument('-c', '--config', default=lib.cwd.cwd,
|
||||||
|
type=str, help='Path to configuration file', required=False)
|
@ -1,10 +1,7 @@
|
|||||||
import argparse
|
import lib.uis.config_ui
|
||||||
import configparser
|
|
||||||
import logging
|
argparser = lib.uis.config_ui.argparser
|
||||||
import lib.cwd
|
|
||||||
argparser = argparse.ArgumentParser(description='Tilde administration tools')
|
|
||||||
argparser.add_argument('-c', '--config', default=lib.cwd.cwd,
|
|
||||||
type=str, help='Path to configuration file', required=False)
|
|
||||||
# store_true just stores true when the command is supplied, so it doesn't need choices nor types
|
# store_true just stores true when the command is supplied, so it doesn't need choices nor types
|
||||||
argparser.add_argument('-u', '--unapproved', default=False, action="store_true",
|
argparser.add_argument('-u', '--unapproved', default=False, action="store_true",
|
||||||
help='only unapproved users. Default is only approved.', required=False)
|
help='only unapproved users. Default is only approved.', required=False)
|
Loading…
Reference in New Issue