Django

Code

Changeset 9470

Show
Ignore:
Timestamp:
11/16/08 03:27:16 (2 months ago)
Author:
mtredinnick
Message:

Fixed #9455 -- Tiny cleanup to avoid an "undefined variable" warning. The net
effect is the same in any case (bailing out to the global exception catcher).

Files:

Legend:

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

    r8768 r9470  
    208208                    # dealing with options 
    209209                    del rargs[0] 
    210                     raise error 
     210                    raise Exception 
    211211            except: 
    212212                largs.append(arg)