follow-up 5893af5025
clean git version a bit (convert to str and remove trailing newline)
This commit is contained in:
@@ -182,7 +182,8 @@ class Exception_Window(QWidget):
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def get_git_version():
|
def get_git_version():
|
||||||
dir = os.path.dirname(os.path.realpath(sys.argv[0]))
|
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):
|
def _show_window(*args):
|
||||||
|
|||||||
Reference in New Issue
Block a user