aboutsummaryrefslogtreecommitdiffstats
path: root/src/editor.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-09-10 09:41:52 +0200
committerMattias Andrée <maandree@operamail.com>2013-09-10 09:41:52 +0200
commit3e1aeec7a547e2559fa5559d6f6ba1ae23c02952 (patch)
tree9cb8ac59b43471b5cb7e5b1fa1bf9573391a9726 /src/editor.py
parentfix jump bug on text insert (diff)
downloadpytagomacs-3e1aeec7a547e2559fa5559d6f6ba1ae23c02952.tar.gz
pytagomacs-3e1aeec7a547e2559fa5559d6f6ba1ae23c02952.tar.bz2
pytagomacs-3e1aeec7a547e2559fa5559d6f6ba1ae23c02952.tar.xz
remove debug exception
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/editor.py')
-rw-r--r--src/editor.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/editor.py b/src/editor.py
index 214a4d7..7e02b27 100644
--- a/src/editor.py
+++ b/src/editor.py
@@ -54,8 +54,6 @@ class Jump():
'''
def __init__(self, y, x):
self.string = '\033[%i;%iH' % (y, x)
- if (y < 0) or (x < 0):
- raise Exception() ########################## ########################## ########################## ########################## ##########################
def __str__(self):
return self.string
def __call__(self):