clean git version a bit (convert to str and remove trailing newline)
This commit is contained in:
SomberNight 2018-02-27 03:06:49 +01:00
parent 375d7965d7
commit 52d41a4339
1 changed files with 2 additions and 1 deletions

View File

@ -182,7 +182,8 @@ class Exception_Window(QWidget):
@staticmethod
def get_git_version():
dir = os.path.dirname(os.path.realpath(sys.argv[0]))
return subprocess.check_output(['git', 'describe', '--always'], cwd=dir)
version = subprocess.check_output(['git', 'describe', '--always'], cwd=dir)
return str(version, "utf8").strip()
def _show_window(*args):