Skip to content

Commit 4c8d09d

Browse files
authored
Fixed issue causing app not to start.
1 parent b4f0a37 commit 4c8d09d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def __init__(self, master=None):
337337

338338
if os.path.exists("VERSION_INFO"):
339339
with open("VERSION_INFO", "r") as file:
340-
self._version = file.read_all()
340+
self._version = file.read_lines()[0]
341341

342342
logger.debug("Loading config file.")
343343
try: # to open preceding config file

0 commit comments

Comments
 (0)