aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/del.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/commands/del.py')
-rw-r--r--MgaRepo/commands/del.py4
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)