smaller things
This commit is contained in:
parent
41c2341bf7
commit
5e08b9aff5
1
TODO
1
TODO
@ -13,6 +13,7 @@ ToDos in Priority order:
|
|||||||
|
|
||||||
- Known Bugs
|
- Known Bugs
|
||||||
fix line wrapping bug (multible lines and make a linebreak in the middle of a line)
|
fix line wrapping bug (multible lines and make a linebreak in the middle of a line)
|
||||||
|
print(str(b'\x94'.decode('cp850')).encode('utf-8').decode('utf-8'))
|
||||||
handle ncurses "optimisations.."
|
handle ncurses "optimisations.."
|
||||||
sometimes the screen is spoken from the beginning without need to
|
sometimes the screen is spoken from the beginning without need to
|
||||||
|
|
||||||
|
@ -79,8 +79,8 @@ class screen():
|
|||||||
diff = difflib.ndiff(environment['screenData']['oldContentText'][diffStart:],\
|
diff = difflib.ndiff(environment['screenData']['oldContentText'][diffStart:],\
|
||||||
environment['screenData']['newContentText'][diffStart:])
|
environment['screenData']['newContentText'][diffStart:])
|
||||||
else:
|
else:
|
||||||
diff = difflib.ndiff( environment['screenData']['oldContentText'][diffStart:].splitlines(),\
|
diff = difflib.ndiff( environment['screenData']['oldContentText'][diffStart:].split('\n'),\
|
||||||
environment['screenData']['newContentText'][diffStart:].splitlines())
|
environment['screenData']['newContentText'][diffStart:].split('\n'))
|
||||||
|
|
||||||
diffList = list(diff)
|
diffList = list(diff)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user