bmc/backend/tools.py

9 lines
126 B
Python

import sys
def warning(*objs):
"""
Write warnings to stderr.
"""
print("WARNING: ", *objs, file=sys.stderr)