summaryrefslogtreecommitdiffstats
path: root/cholerab/cholerab-live/view.py
diff options
context:
space:
mode:
Diffstat (limited to 'cholerab/cholerab-live/view.py')
-rw-r--r--cholerab/cholerab-live/view.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cholerab/cholerab-live/view.py b/cholerab/cholerab-live/view.py
index 29608a7d..01b53b8c 100644
--- a/cholerab/cholerab-live/view.py
+++ b/cholerab/cholerab-live/view.py
@@ -12,7 +12,7 @@ class CursesView(threading.Thread):
adds a char at the current cursor position
abstraction to the curses win.addch()
"""
- try: self.win.addch(char,2)
+ try: self.win.addch(char)
except: pass
self.cholerab.send_char(self.x,self.y,chr(char))
def stop(self):