changeset 8029:04aea77a49fa

cleanup: safe_* functions live in utils2 - don't rely on re-export from utils
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 19 Dec 2019 22:39:38 +0100
parents fd0998635e83
children e8e1bf4743df
files kallithea/lib/middleware/permanent_repo_url.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/lib/middleware/permanent_repo_url.py	Mon Dec 16 03:22:22 2019 +0100
+++ b/kallithea/lib/middleware/permanent_repo_url.py	Thu Dec 19 22:39:38 2019 +0100
@@ -20,7 +20,8 @@
 """
 
 
-from kallithea.lib.utils import fix_repo_id_name, safe_str
+from kallithea.lib.utils import fix_repo_id_name
+from kallithea.lib.utils2 import safe_str
 
 
 class PermanentRepoUrl(object):