[Python-checkins] cpython (2.7): Indent

terry.reedy python-checkins at python.org
Thu Nov 12 15:25:30 EST 2015


https://hg.python.org/cpython/rev/7249cde9709a
changeset:   99096:7249cde9709a
branch:      2.7
parent:      99092:b735889192f7
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Thu Nov 12 15:24:22 2015 -0500
summary:
  Indent

files:
  Lib/idlelib/configHandler.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py
--- a/Lib/idlelib/configHandler.py
+++ b/Lib/idlelib/configHandler.py
@@ -396,7 +396,7 @@
             theme = self.GetOption('main', 'Theme', 'name', default='')
         source = self.defaultCfg if default else self.userCfg
         if source['highlight'].has_section(theme):
-                return theme
+            return theme
         else:
             return "IDLE Classic"
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list