Django

Code

Changeset 6094

Show
Ignore:
Timestamp:
09/10/07 23:37:23 (10 months ago)
Author:
adrian
Message:

Got runserver auto-reloading working again by removing what appeared to be debugging code in django.core.management.base. Refs #5369

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/management/base.py

    r6091 r6094  
    66import sys 
    77import os 
    8 from traceback import print_exc 
    98 
    109class CommandError(Exception): 
     
    6160        if options.pythonpath: 
    6261            sys.path.insert(0, options.pythonpath) 
    63         try: 
    64             self.execute(*args, **options.__dict__) 
    65         except Exception, e: 
    66             print_exc() 
    67             parser.print_usage() 
     62        self.execute(*args, **options.__dict__) 
    6863 
    6964    def execute(self, *args, **options):