Removed unneeded use of `len()` in a couple expressions.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6483 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2007-10-13 18:45:49 +00:00
parent fd292d340e
commit 5f9821a5d0
2 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ class NoArgsCommand(BaseCommand):
args = ''
def handle(self, *args, **options):
if len(args) != 0:
if args:
raise CommandError("Command doesn't accept any arguments")
return self.handle_noargs(**options)

View File

@ -20,7 +20,7 @@ class Command(BaseCommand):
import django
from django.core.servers.basehttp import run, AdminMediaHandler, WSGIServerException
from django.core.handlers.wsgi import WSGIHandler
if len(args) != 0:
if args:
raise CommandError('Usage is runserver %s' % self.args)
if not addrport:
addr = ''