mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
png.py: Fix undefined name 'e'. (nw)
This commit is contained in:
parent
f76c73b917
commit
2323a3c851
1 changed files with 2 additions and 1 deletions
|
@ -2778,4 +2778,5 @@ if __name__ == '__main__':
|
|||
try:
|
||||
_main(sys.argv)
|
||||
except Error:
|
||||
print (sys.exc_info()[1], file=e)
|
||||
e = sys.exc_info()[1]
|
||||
print(e, file=sys.stderr)
|
||||
|
|
Loading…
Reference in a new issue