Browse Source

fix import bug in setup.py

Xintao 3 years ago
parent
commit
3ce826cabe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      setup.py

+ 1 - 1
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')