diff --git a/propti/data_structures.py b/propti/data_structures.py index 6eed913..e7522bc 100644 --- a/propti/data_structures.py +++ b/propti/data_structures.py @@ -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