diff options
| author | Mattias Andrée <maandree@operamail.com> | 2013-09-10 09:41:52 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2013-09-10 09:41:52 +0200 |
| commit | 3e1aeec7a547e2559fa5559d6f6ba1ae23c02952 (patch) | |
| tree | 9cb8ac59b43471b5cb7e5b1fa1bf9573391a9726 /src/editor.py | |
| parent | fix jump bug on text insert (diff) | |
| download | pytagomacs-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.py | 2 |
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): |
