From: Guido van Rossum Date: Thu, 17 May 2001 15:03:14 +0000 (+0000) Subject: Fixed botched indent in _init_mac() code. (It may never be executed, X-Git-Tag: v2.2a3~1762 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99f9baa33190482784900970fd3e1c76e7cb48d6;p=thirdparty%2FPython%2Fcpython.git Fixed botched indent in _init_mac() code. (It may never be executed, but it still can't have any syntax errors. Went a little too fast there, Jack? :-) --- diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 473faea85e8c..d013d1b83288 100644 --- a/Lib/distutils/sysconfig.py +++ b/Lib/distutils/sysconfig.py @@ -341,7 +341,7 @@ def _init_mac(): import MacOS if not hasattr(MacOS, 'runtimemodel'): - g['SO'] = '.ppc.slb' + g['SO'] = '.ppc.slb' else: g['SO'] = '.%s.slb' % MacOS.runtimemodel