From 10a83d1153c12129f3258dcbd2d0d8e5be7fe20d Mon Sep 17 00:00:00 2001 From: chrys87 Date: Tue, 23 Aug 2016 13:11:20 +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 ae47b75a..d2e370ce 100644 --- a/src/fenrir-package/commands/commands/curr_screen.py +++ b/src/fenrir-package/commands/commands/curr_screen.py @@ -5,7 +5,7 @@ class command(): pass def run(self, environment): if environment['screenData']['newContentText'].strip(" \t\n") == '': - environment['runtime']['outputManager'].presentText(environment, "blank", interrupt=True) + environment['runtime']['outputManager'].presentText(environment, "screen is empty", interrupt=True) else: environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newContentText'],interrupt=True) return environment