bugfix typo

This commit is contained in:
chrys87 2016-07-19 10:16:54 +02:00 committed by GitHub
parent 1b29d24b0a
commit ec3d6e22a8

View File

@ -13,7 +13,7 @@ class command():
environment['screenData']['newCursorReview']['y'] -= 1
environment['screenData']['newCursorReview']['x'] = len(wrappedLines[environment['screenData']['newCursorReview']['y']) - 1
else:
environment['screenData']['newCursorReview']['x'] =- 1
environment['screenData']['newCursorReview']['x'] -= 1
if wrappedLines[environment['screenData']['newCursorReview']['y']][environment['screenData']['newCursorReview']['x']].strip(" \t\n") == '':
environment['runtime']['outputManager'].presentText(environment, "blank")
else: