aboutsummaryrefslogtreecommitdiff
path: root/bin/printer.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/printer.py')
-rw-r--r--bin/printer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/printer.py b/bin/printer.py
index 9997a0c..aed52e5 100644
--- a/bin/printer.py
+++ b/bin/printer.py
@@ -677,7 +677,7 @@ class Printer:
# Curses raises an exception each time we print on the screen's
# edge. We can just catch and ignore it.
try:
- self.screen.addch(ypos, xpos, symb, attr)
+ self.screen.addstr(ypos, xpos, symb, attr)
except curses.error:
pass