Removed an errant ipdb import from commit 9777442

This commit is contained in:
Adrian Holovaty 2013-04-25 11:41:57 -05:00
parent 8f7276b782
commit 86243d2e57
1 changed files with 1 additions and 5 deletions

View File

@ -312,11 +312,7 @@ class QuerySet(object):
if skip:
obj = model_cls(**dict(zip(init_list, row_data)))
else:
try:
obj = model(*row_data)
except IndexError:
import ipdb; ipdb.set_trace()
pass
# Store the source database of the object
obj._state.db = db