# HG changeset patch # User Marcin Kuzminski # Date 2018-01-22 18:08:16 # Node ID 4a40b17f7603fc4ae4cc1ed025ddd45cdf5d1d66 # Parent d48fe67d8c3bb783136c071d2d17d28ea81dd69e db-models: fix missing JsonRaw import. diff --git a/rhodecode/model/db.py b/rhodecode/model/db.py --- a/rhodecode/model/db.py +++ b/rhodecode/model/db.py @@ -59,7 +59,8 @@ from rhodecode.lib.utils2 import ( str2bool, safe_str, get_commit_safe, safe_unicode, md5_safe, time_to_datetime, aslist, Optional, safe_int, get_clone_url, AttributeDict, glob2re, StrictAttributeDict, cleaned_uri) -from rhodecode.lib.jsonalchemy import MutationObj, MutationList, JsonType +from rhodecode.lib.jsonalchemy import MutationObj, MutationList, JsonType, \ + JsonRaw from rhodecode.lib.ext_json import json from rhodecode.lib.caching_query import FromCache from rhodecode.lib.encrypt import AESCipher