diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-12 20:06:34 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-12 20:06:34 (GMT) |
commit | 9fc40918022c05d2fec68b5b9aa10a7578f6b6e0 (patch) | |
tree | dc9cb1abd6049995f1e572bf8aecb88844d1670b /Lib/idlelib | |
parent | 4df5c7aa30d4e8cc3542cff3d2a31c08fa16cbc5 (diff) | |
parent | 8f1a98058f0249319ca4c56cf2586ebfec5d2e7e (diff) | |
download | cpython-9fc40918022c05d2fec68b5b9aa10a7578f6b6e0.zip cpython-9fc40918022c05d2fec68b5b9aa10a7578f6b6e0.tar.gz cpython-9fc40918022c05d2fec68b5b9aa10a7578f6b6e0.tar.bz2 |
Merge with 3.5
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/configHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index 336d969..3d75189 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -396,7 +396,7 @@ class IdleConf: source = self.defaultCfg if default else self.userCfg if source['highlight'].has_section(theme): return theme - else: + else: return "IDLE Classic" def CurrentKeys(self): |