summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-23 16:31:52 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-23 16:31:52 +0100
commitb979bdb5609394902d7b727c7e27f249d4f953f3 (patch)
treec8dba2372f4ad320447e6a4d344ee87df8b4adc8 /core
parentb7659a477c985b78f9ae9947f554104ad7e846cb (diff)
downloadtroggle-b979bdb5609394902d7b727c7e27f249d4f953f3.tar.gz
troggle-b979bdb5609394902d7b727c7e27f249d4f953f3.tar.bz2
troggle-b979bdb5609394902d7b727c7e27f249d4f953f3.zip
slug too long for field
Diffstat (limited to 'core')
-rw-r--r--core/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/utils.py b/core/utils.py
index bf7cb28..ff5f35c 100644
--- a/core/utils.py
+++ b/core/utils.py
@@ -77,7 +77,7 @@ def save_carefully(objectType, lookupAttribs={}, nonLookupAttribs={}):
try:
instance, created = objectType.objects.get_or_create(defaults=nonLookupAttribs, **lookupAttribs)
except:
- print(" !! - SAVE CAREFULLY ===================", objectType)
+ print(" !! - FAIL in SAVE CAREFULLY ===================", objectType)
print(" !! - -- objects.get_or_create()")
print(" !! - lookupAttribs:{}\n !! - nonLookupAttribs:{}".format(lookupAttribs,nonLookupAttribs))
raise