diff --git a/src/fenrir-package/commands/commands/curr_line.py b/src/fenrir-package/commands/commands/curr_line.py index 41aeef24..3e3fa777 100644 --- a/src/fenrir-package/commands/commands/curr_line.py +++ b/src/fenrir-package/commands/commands/curr_line.py @@ -12,7 +12,7 @@ class command(): environment['screenData']['newCursorReview']['x'], environment['screenData']['newCursorReview']['y'], currLine = \ line_utils.getCurrentLine(environment['screenData']['newCursorReview']['x'], environment['screenData']['newCursorReview']['y'], environment['screenData']['newContentText']) - if currLine.strip() == '': + if currLine.strip(" \n\t") == '': environment['runtime']['outputManager'].presentText(environment, "blank", soundIcon='EmptyLine', interrupt=True) else: environment['runtime']['outputManager'].presentText(environment, currLine, interrupt=True)