Path is positional arg

This commit is contained in:
Rupus Reinefjord 2019-01-01 14:57:31 +01:00
parent 17eb8ea511
commit b14ddea356

View file

@ -133,10 +133,10 @@ class OptionsParser(ArgumentParser):
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
self.add_argument( self.add_argument(
'-p', '--path', 'pass_path',
metavar='path',
type=str, type=str,
help="Path to the PasswordStore folder to use", help="Path to the PasswordStore folder to use",
dest='pass_path',
) )
self.add_argument( self.add_argument(