diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-23 16:31:52 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-23 16:31:52 +0100 |
commit | b979bdb5609394902d7b727c7e27f249d4f953f3 (patch) | |
tree | c8dba2372f4ad320447e6a4d344ee87df8b4adc8 /core | |
parent | b7659a477c985b78f9ae9947f554104ad7e846cb (diff) | |
download | troggle-b979bdb5609394902d7b727c7e27f249d4f953f3.tar.gz troggle-b979bdb5609394902d7b727c7e27f249d4f953f3.tar.bz2 troggle-b979bdb5609394902d7b727c7e27f249d4f953f3.zip |
slug too long for field
Diffstat (limited to 'core')
-rw-r--r-- | core/utils.py | 2 |
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 |