From 1345cd0c17ad6906af1dde505198552cf10c7c7d Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 10 Apr 2006 03:26:40 +0000 Subject: [PATCH] magic-removal: Fixed #1606 -- Fixed ValueError in inspectdb. Thanks, pb git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2647 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/core/management.py b/django/core/management.py index 7851403e5d..d8abbc5287 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -700,7 +700,6 @@ def inspectdb(db_name): # This is a hook for DATA_TYPES_REVERSE to return a tuple of # (field_type, extra_params_dict). if type(field_type) is tuple: - field_type, extra_params = field_type field_type, new_params = field_type extra_params.update(new_params)