Fixed a refactoring error in ba5138b1
.
Thanks Florian for tracing the error.
This commit is contained in:
parent
bc7a10299f
commit
a50e0c9fdc
|
@ -121,16 +121,15 @@ class Command(NoArgsCommand):
|
||||||
if custom_sql:
|
if custom_sql:
|
||||||
if verbosity >= 2:
|
if verbosity >= 2:
|
||||||
self.stdout.write("Installing custom SQL for %s.%s model\n" % (app_name, model._meta.object_name))
|
self.stdout.write("Installing custom SQL for %s.%s model\n" % (app_name, model._meta.object_name))
|
||||||
with transaction.commit_on_success_unless_managed(using=db):
|
try:
|
||||||
try:
|
with transaction.commit_on_success_unless_managed(using=db):
|
||||||
for sql in custom_sql:
|
for sql in custom_sql:
|
||||||
cursor.execute(sql)
|
cursor.execute(sql)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.stderr.write("Failed to install custom SQL for %s.%s model: %s\n" % \
|
self.stderr.write("Failed to install custom SQL for %s.%s model: %s\n" % \
|
||||||
(app_name, model._meta.object_name, e))
|
(app_name, model._meta.object_name, e))
|
||||||
if show_traceback:
|
if show_traceback:
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
raise
|
|
||||||
else:
|
else:
|
||||||
if verbosity >= 3:
|
if verbosity >= 3:
|
||||||
self.stdout.write("No custom SQL for %s.%s model\n" % (app_name, model._meta.object_name))
|
self.stdout.write("No custom SQL for %s.%s model\n" % (app_name, model._meta.object_name))
|
||||||
|
@ -145,14 +144,13 @@ class Command(NoArgsCommand):
|
||||||
if index_sql:
|
if index_sql:
|
||||||
if verbosity >= 2:
|
if verbosity >= 2:
|
||||||
self.stdout.write("Installing index for %s.%s model\n" % (app_name, model._meta.object_name))
|
self.stdout.write("Installing index for %s.%s model\n" % (app_name, model._meta.object_name))
|
||||||
with transaction.commit_on_success_unless_managed(using=db):
|
try:
|
||||||
try:
|
with transaction.commit_on_success_unless_managed(using=db):
|
||||||
for sql in index_sql:
|
for sql in index_sql:
|
||||||
cursor.execute(sql)
|
cursor.execute(sql)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.stderr.write("Failed to install index for %s.%s model: %s\n" % \
|
self.stderr.write("Failed to install index for %s.%s model: %s\n" % \
|
||||||
(app_name, model._meta.object_name, e))
|
(app_name, model._meta.object_name, e))
|
||||||
raise
|
|
||||||
|
|
||||||
# Load initial_data fixtures (unless that has been disabled)
|
# Load initial_data fixtures (unless that has been disabled)
|
||||||
if load_initial_data:
|
if load_initial_data:
|
||||||
|
|
Loading…
Reference in New Issue