commit | 2a7cc5343db808b180507b202f98fe4da8e0e7fa | [log] [tgz] |
---|---|---|
author | Éric Araujo <merwok@netwok.org> | Mon Nov 07 09:18:30 2011 +0100 |
committer | Éric Araujo <merwok@netwok.org> | Mon Nov 07 09:18:30 2011 +0100 |
tree | e5023cd444c038b3f0802111a6f0ee5f5ce28b9f | |
parent | 438f21a406b0834acd4e37ba83cd8cc27af5ae79 [diff] [blame] |
Remove unnecessary version check
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 276e683..0b79ffb 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py
@@ -488,8 +488,7 @@ # Setting 'userbase' is done below the call to the # init function to enable using 'get_config_var' in # the init-function. - if sys.version >= '2.6': - _CONFIG_VARS['userbase'] = _getuserbase() + _CONFIG_VARS['userbase'] = _getuserbase() if 'srcdir' not in _CONFIG_VARS: _CONFIG_VARS['srcdir'] = _PROJECT_BASE