diff --git a/src/fenrir-package/commands/commands/curr_screen.py b/src/fenrir-package/commands/commands/curr_screen.py index b7237aed..19accc2b 100644 --- a/src/fenrir-package/commands/commands/curr_screen.py +++ b/src/fenrir-package/commands/commands/curr_screen.py @@ -4,7 +4,7 @@ class command(): def __init__(self): pass def run(self, environment): - if environment['screenData']['newContentText'].strip(" \t\n") == '': + if environment['screenData']['newContentText'].strip() == '': environment['runtime']['outputManager'].presentText(environment, "screen is empty", soundIcon='EmptyLine', interrupt=True) else: environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newContentText'],interrupt=True)