Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion propti/data_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ def exec_versionCall(self, executable) -> str:
# define maximal number of line to be parsed
lines_count = 100
while True:
line = proc.stdout.readline().decode("utf-8")
line = proc.stdout.readline().decode("utf-8", "ignore")
if line[1:9] == 'Revision':
ver = line[line.index(':')+2:]
break
Expand Down