##// END OF EJS Templates
fixed UnicodeWarning on pushing from sqlalchemy
marcink -
r2249:a3eb31cc beta
parent child Browse files
Show More
@@ -150,7 +150,7 b' def action_logger(user, action, repo, ip'
150 150
151 151 user_log = UserLog()
152 152 user_log.user_id = user_obj.user_id
153 user_log.action = action
153 user_log.action = safe_unicode(action)
154 154
155 155 user_log.repository_id = repo_obj.repo_id
156 156 user_log.repository_name = repo_name
General Comments 0
You need to be logged in to leave comments. Login now