nextcloud_docker_scripts/utils.py

13 lines
211 B
Python

quiet_mode = False
no_log = False
no_cleanup = False
all_containers = False
def _print(text=None):
if not quiet_mode:
if not text is None:
print(text)
else:
print()