[Python-checkins] r65357 - sandbox/trunk/ttk-gsoc/src/idlelib/editorpage.py
guilherme.polo
python-checkins at python.org
Fri Aug 1 04:22:01 CEST 2008
Author: guilherme.polo
Date: Fri Aug 1 04:22:00 2008
New Revision: 65357
Log:
Fixed IndentationError, oops
Modified:
sandbox/trunk/ttk-gsoc/src/idlelib/editorpage.py
Modified: sandbox/trunk/ttk-gsoc/src/idlelib/editorpage.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/idlelib/editorpage.py (original)
+++ sandbox/trunk/ttk-gsoc/src/idlelib/editorpage.py Fri Aug 1 04:22:00 2008
@@ -391,7 +391,7 @@
# parent
configDialog.ConfigDialog(self.editwin.top, 'Settings')
- def _open_module(self, event=None):
+ def _open_module(self, event=None):
try:
name = self.text.get("sel.first", "sel.last")
except TclError:
More information about the Python-checkins
mailing list