description % should not be escaped, reverting

This commit is contained in:
mdipierro
2019-05-25 01:01:32 -07:00
parent 1c5b2d7fce
commit ce25d8dc31
5 changed files with 10 additions and 12 deletions
-1
View File
@@ -444,7 +444,6 @@ class AuthAPI(object):
if type(description).__name__ == 'lazyT':
description = description.m
if not user_id or self.table_user()[user_id]:
description = description.replace('%', '%%')
self.table_event().insert(
description=str(description % vars), origin=origin, user_id=user_id)