Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Area.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-04-18 17:26:36 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-04-18 17:26:36 (GMT)
commit3910a07cb43f270f32ebb41397a5c3513f92491f (patch)
tree218660349b8f6dc8487eae32286a0959a9f61e35 /Area.py
parent97865a5eb68879819327998edbb71bc1328e1f1e (diff)
Pep8 fixes in Area.py
Diffstat (limited to 'Area.py')
-rw-r--r--Area.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Area.py b/Area.py
index 150d359..24f02d4 100644
--- a/Area.py
+++ b/Area.py
@@ -822,7 +822,7 @@ class Area(gtk.DrawingArea):
if self.selmove:
self.getout()
- if self._undo_index < len(self._undo_list)-1:
+ if self._undo_index < len(self._undo_list) - 1:
self._undo_index += 1
undo_pix = self._undo_list[self._undo_index]
@@ -1120,7 +1120,6 @@ class Area(gtk.DrawingArea):
self.enableUndo(widget)
self.set_tool_cursor()
-
def drain_events(self, block=gtk.FALSE):
while gtk.events_pending():
gtk.mainiteration(block)