summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/sysconfig.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-05-17 15:03:14 (GMT)
committerGuido van Rossum <guido@python.org>2001-05-17 15:03:14 (GMT)
commit99f9baa33190482784900970fd3e1c76e7cb48d6 (patch)
treed45262ce8eae4aa76aba0a6daf1d8dbbd01866a6 /Lib/distutils/sysconfig.py
parentdd13a204909986c6516354347593b5282fef6743 (diff)
downloadcpython-99f9baa33190482784900970fd3e1c76e7cb48d6.zip
cpython-99f9baa33190482784900970fd3e1c76e7cb48d6.tar.gz
cpython-99f9baa33190482784900970fd3e1c76e7cb48d6.tar.bz2
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? :-)
Diffstat (limited to 'Lib/distutils/sysconfig.py')
-rw-r--r--Lib/distutils/sysconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
index 473faea..d013d1b 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