aboutsummaryrefslogtreecommitdiffstats
path: root/src/editor.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-09-09 04:40:43 +0200
committerMattias Andrée <maandree@operamail.com>2013-09-09 04:40:43 +0200
commit9c47dba6df976a9ff7deb3fd6694aa6c4383eb6b (patch)
tree51a6ff787d73368f51ac83fc96e820ca76e32b26 /src/editor.py
parentfix point movement (diff)
downloadpytagomacs-9c47dba6df976a9ff7deb3fd6694aa6c4383eb6b.tar.gz
pytagomacs-9c47dba6df976a9ff7deb3fd6694aa6c4383eb6b.tar.bz2
pytagomacs-9c47dba6df976a9ff7deb3fd6694aa6c4383eb6b.tar.xz
missed a variable use in refactoring
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/editor.py')
-rw-r--r--src/editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor.py b/src/editor.py
index f128b8e..fc75baa 100644
--- a/src/editor.py
+++ b/src/editor.py
@@ -326,7 +326,7 @@ class TextArea():
self.alert('No mark is activated')
elif ord(d) == ord('S') - ord('@'):
last = ''
- for row in range(0, len(datalines)):
+ for row in range(0, len(self.lines)):
self.datamap[self.lines[row].name] = self.lines[row].text
saver()
modified = False