Skip to content

Commit afe6f78

Browse files
committed
Found more backquotes in raw SQL
1 parent da9e514 commit afe6f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cms/signals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def post_save_user_group(instance, raw, created, **kwargs):
154154
# TODO: same as in post_save_user - raw sql is just not nice - workaround...?
155155

156156
cursor = connection.cursor()
157-
query = "INSERT INTO `%s` (`group_ptr_id`, `created_by_id`) VALUES (%d, %d)" % (
157+
query = "INSERT INTO %s (group_ptr_id, created_by_id) VALUES (%d, %d)" % (
158158
PageUserGroup._meta.db_table,
159159
instance.pk,
160160
creator.pk

0 commit comments

Comments
 (0)