diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-01-25 18:14:00 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-01-25 18:14:00 +0000 |
commit | dcfc80655d393f99a03d966af92b15c853f2d71a (patch) | |
tree | ef8d9f233d8447bca1c7f26ecad4287e083e6cd6 /MgaRepo/commands | |
parent | 4f9a8fc5b69a342cff98726552184c8a33a57acd (diff) | |
download | mgarepo-dcfc80655d393f99a03d966af92b15c853f2d71a.tar mgarepo-dcfc80655d393f99a03d966af92b15c853f2d71a.tar.gz mgarepo-dcfc80655d393f99a03d966af92b15c853f2d71a.tar.bz2 mgarepo-dcfc80655d393f99a03d966af92b15c853f2d71a.tar.xz mgarepo-dcfc80655d393f99a03d966af92b15c853f2d71a.zip |
add binrepo remove function
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 |