Skip to content

Commit

Permalink
Gladevcp: fix error on missing filter program
Browse files Browse the repository at this point in the history
If an invalid filter program was specified in the INI file, the opened file
simply failed to load without warning except for a cryptic error on the command line.
  • Loading branch information
mozmck committed Nov 9, 2023
1 parent c717fdb commit bd5d038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/gladevcp/hal_filechooser.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def update(self):

def finish(self):
# .. might be something left on stderr
for line in self.p.stderr:
for line in self.p.stderr.read().decode():
m = progress_re.match(line)
if not m:
self.stderr_text.append(line)
Expand Down

0 comments on commit bd5d038

Please sign in to comment.