fix some navigations

This commit is contained in:
chrys 2016-07-18 21:05:01 +02:00
parent e0428fa102
commit bf5cd96a18

View File

@ -61,7 +61,9 @@ class screen():
# changes on the screen
if (environment['screenData']['oldContentText'] != environment['screenData']['newContentText']) and \
(len(environment['screenData']['newContentText']) > 0):
diff = difflib.ndiff(" ".join(environment['screenData']['oldContentText'].split()), " ".join(environment['screenData']['newContentText'].split()))
# diff = difflib.ndiff(environment['screenData']['oldContentText'], environment['screenData']['newContentText'])
diff = difflib.ndiff(" ".join(environment['screenData']['oldContentText'].split(' ')), " ".join(environment['screenData']['newContentText'].split(' ')))
environment['screenData']['newDelta'] = ''.join(x[2:] for x in diff if x.startswith('+ '))