summaryrefslogtreecommitdiffstats
path: root/src/script
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-10-02 12:24:13 (GMT)
committerSteven Knight <knight@baldmt.com>2001-10-02 12:24:13 (GMT)
commit1287f392470ec9ef1a6be4f9a55ae67d7a638de8 (patch)
tree4092e968d9ae7de31453f918cf7900e1e72de6b4 /src/script
parent321aa365f5770b70be13631f717be8ecfeaf70f2 (diff)
downloadSCons-1287f392470ec9ef1a6be4f9a55ae67d7a638de8.zip
SCons-1287f392470ec9ef1a6be4f9a55ae67d7a638de8.tar.gz
SCons-1287f392470ec9ef1a6be4f9a55ae67d7a638de8.tar.bz2
Fix various bugs caused by Python 2.1
Diffstat (limited to 'src/script')
-rw-r--r--src/script/scons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/scons.py b/src/script/scons.py
index e0e958b..d3a1ee8 100644
--- a/src/script/scons.py
+++ b/src/script/scons.py
@@ -519,7 +519,7 @@ def main():
# It's all right if there's no SCONSFLAGS environment variable.
pass
except getopt_err, x:
- _scons_user_warning("SCONSFLAGS " + x)
+ _scons_user_warning("SCONSFLAGS " + str(x))
else:
for opt, arg in cmd_opts:
opt_func[opt](opt, arg)