]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed botched indent in _init_mac() code. (It may never be executed,
authorGuido van Rossum <guido@python.org>
Thu, 17 May 2001 15:03:14 +0000 (15:03 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 17 May 2001 15:03:14 +0000 (15:03 +0000)
but it still can't have any syntax errors.  Went a little too fast
there, Jack? :-)

Lib/distutils/sysconfig.py

index 473faea85e8c85fbb4a7812d1287862f2320b0c2..d013d1b8328820c457970ea779d22eadc831b2af 100644 (file)
@@ -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