there is no need to explicitly pass sys.argv to argparse... embarrassing
This commit is contained in:
parent
9cd7b68967
commit
412f2de6b7
1 changed files with 5 additions and 5 deletions
8
vdstatus
8
vdstatus
|
@ -14,13 +14,13 @@ import plugins
|
|||
DEFAULT_CONFIG = os.path.join(os.environ['HOME'], '.config/vdstatus/conf.json')
|
||||
|
||||
|
||||
def parse_arguments(arguments=sys.argv[1:]):
|
||||
def parse_arguments():
|
||||
desc = ('A simple i3status replacement, '
|
||||
'and more. Warning: WIP, may be broken.')
|
||||
p = argparse.ArgumentParser(description=desc)
|
||||
p.add_argument('-c', '--conf', default=DEFAULT_CONFIG,
|
||||
parser = argparse.ArgumentParser(description=desc)
|
||||
parser.add_argument('-c', '--conf', default=DEFAULT_CONFIG,
|
||||
help='configuration file')
|
||||
return p.parse_args(arguments)
|
||||
return parser.parse_args()
|
||||
|
||||
|
||||
class PluginRunner:
|
||||
|
|
Loading…
Reference in a new issue