# HG changeset patch # User RhodeCode Admin # Date 2023-03-06 22:09:17 # Node ID 905a9fec383cf632f3624ca84f16e3e4c56067e9 # Parent 16048ea05176d6e0ae7e60bf9aadbbdeb21b144b caches: fixed utils imports diff --git a/rhodecode/lib/rc_cache/utils.py b/rhodecode/lib/rc_cache/utils.py --- a/rhodecode/lib/rc_cache/utils.py +++ b/rhodecode/lib/rc_cache/utils.py @@ -27,8 +27,9 @@ import threading from dogpile.cache import CacheRegion import rhodecode -from rhodecode.lib.utils import safe_bytes, sha1 -from rhodecode.lib.utils2 import safe_unicode, str2bool +from rhodecode.lib.hash_utils import sha1 +from rhodecode.lib.type_utils import str2bool +from rhodecode.lib.str_utils import safe_bytes from rhodecode.model.db import Session, CacheKey, IntegrityError from rhodecode.lib.rc_cache import cache_key_meta