Changeset 56a3c29e in mainline


Ignore:
Timestamp:
2023-11-13T07:53:49Z (6 months ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
4f6368c
Parents:
d33daf07
Message:

ew.py: hide confusing error message

The error message is printed for terminal emulators that are not
found. But if there is another failure (e.g. error in msim.conf)
the error message looks like it is related to not finding the
right terminal emulator. Thus it is better to hide it completely.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    rd33daf07 r56a3c29e  
    7979        for termemu in emus:
    8080                try:
    81                         subprocess.check_output('which ' + termemu, shell = True)
     81                        subprocess.check_output('which ' + termemu, shell = True, stderr = subprocess.STDOUT)
    8282                        return termemu
    8383                except:
Note: See TracChangeset for help on using the changeset viewer.