Garbage er mere brugbart.

This commit is contained in:
Jon Michael Aanes 2017-11-13 18:47:10 +01:00
parent de369fd440
commit 3b3ec57f02
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def tiger_print(msg):
if PRINT_LEVEL == PRINT_LEVEL_SILENT:
return
if not isinstance(msg, str):
msg = ''.join([chr(random.randint(0, 255)) for i in range(random.randint(1, 5))])
msg = '<GARBAGE>'
sys.stdout.write(msg)
##########