From 557dfb3f1092274dcdff8aa8d0a21846d77b48fe Mon Sep 17 00:00:00 2001 From: chrys87 Date: Thu, 25 Aug 2016 10:42:34 +0200 Subject: [PATCH] Update curr_screen.py --- src/fenrir-package/commands/commands/curr_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)