def error(msg): if sys.stdout != sys.__stdout__: tmp = sys.stdout sys.stdout = sys.__stdout__ print('ERROR: ' + msg) sys.stdout = tmp else: print('ERROR: ' + msg)