File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def get_content_type_id(content_type_str):
14
14
id = ContentType .objects .get (model = content_type_str ).id
15
15
return id
16
16
except ContentType .DoesNotExist :
17
- print (" Error determining content type id for user declared var: {0}" .format (content_type_str ))
17
+ print ("⚠️ Error determining content type id for user declared var: {0}" .format (content_type_str ))
18
18
19
19
for link in custom_links :
20
20
content_type = link .pop ('content_type' )
@@ -23,7 +23,7 @@ def get_content_type_id(content_type_str):
23
23
custom_link = CustomLink (** link )
24
24
if not CustomLink .objects .filter (name = custom_link .name ):
25
25
custom_link .save ()
26
- print (" Created Custom Link {0}" .format (custom_link .name ))
26
+ print ("🖥️ Created Custom Link {0}" .format (custom_link .name ))
27
27
else :
28
28
print ("⚠️ Skipping Custom Link {0}, already exists" .format (custom_link .name ))
29
29
You can’t perform that action at this time.
0 commit comments