magcms/prosopopee/utils.py

12 lines
186 B
Python
Raw Normal View History

2016-02-18 06:44:12 +01:00
import sys
def error(test, error_message):
if test:
return
sys.stderr.write(error_message)
sys.stderr.write("\n")
sys.stderr.write("Abort.\n")
sys.exit(1)