From 3ce826cabefc873cf77da33ef60ac8c42a4bb621 Mon Sep 17 00:00:00 2001 From: Xintao Date: Sat, 28 Aug 2021 13:26:09 +0800 Subject: [PATCH] fix import bug in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e68d193..c913145 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def get_hash(): sha = get_git_hash()[:7] elif os.path.exists(version_file): try: - from facexlib.version import __version__ + from realesrgan.version import __version__ sha = __version__.split('+')[-1] except ImportError: raise ImportError('Unable to get git version')