diff options
Diffstat (limited to 'MgaRepo/commands')
-rw-r--r-- | MgaRepo/commands/del.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/MgaRepo/commands/del.py b/MgaRepo/commands/del.py index 79d9d3f..c55d1aa 100644 --- a/MgaRepo/commands/del.py +++ b/MgaRepo/commands/del.py @@ -7,18 +7,13 @@ Usage: mgarepo del [OPTIONS] [PATH] Remove a given file from the binary sources repository. -Changes in the sources file will be left uncommited. - Options: - -c automatically commit the 'sources' file -h help """ def parse_options(): parser = OptionParser(help=HELP) - parser.add_option("-c", dest="commit", default=False, - action="store_true") opts, args = parser.parse_args() if len(args): opts.paths = args |