diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-01-27 22:06:10 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-01-27 22:06:10 +0000 |
commit | 30b91ea3bcbd1bcc9323a50e59dbaa43ec5c1675 (patch) | |
tree | a8f845027a18b0ffb1794fe1faa2f930d33ba61a /MgaRepo/commands | |
parent | 997ebea7a09b1390e4a202429b4bfa1e0ff2db96 (diff) | |
download | mgarepo-30b91ea3bcbd1bcc9323a50e59dbaa43ec5c1675.tar mgarepo-30b91ea3bcbd1bcc9323a50e59dbaa43ec5c1675.tar.gz mgarepo-30b91ea3bcbd1bcc9323a50e59dbaa43ec5c1675.tar.bz2 mgarepo-30b91ea3bcbd1bcc9323a50e59dbaa43ec5c1675.tar.xz mgarepo-30b91ea3bcbd1bcc9323a50e59dbaa43ec5c1675.zip |
rename binrepo_delete as it is not only for binrepo
Diffstat (limited to 'MgaRepo/commands')
-rw-r--r-- | MgaRepo/commands/del.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MgaRepo/commands/del.py b/MgaRepo/commands/del.py index c55d1aa..f61a1d5 100644 --- a/MgaRepo/commands/del.py +++ b/MgaRepo/commands/del.py @@ -1,6 +1,6 @@ from MgaRepo import Error from MgaRepo.command import * -from MgaRepo.rpmutil import binrepo_delete +from MgaRepo.rpmutil import delete HELP = """\ Usage: mgarepo del [OPTIONS] [PATH] @@ -22,4 +22,4 @@ def parse_options(): return opts def main(): - do_command(parse_options, binrepo_delete) + do_command(parse_options, delete) |