fix kwargs bug

This commit is contained in:
Mike Blume 2011-02-13 19:33:23 +00:00
parent 30c4347a77
commit b74dec0151

View file

@ -7,8 +7,6 @@ class Command(BaseCommand):
"IP, resets only for that IP")
def handle(self, *args, **kwargs):
if kwargs:
raise CommandError("Reset does not take named arguments")
if args:
for ip in args:
reset(ip)