diff options
author | Richard Kreuter <richard@10gen.com> | 2010-02-04 09:19:17 -0500 |
---|---|---|
committer | Richard Kreuter <richard@10gen.com> | 2010-02-04 09:58:03 -0500 |
commit | ffcce1a0a58f3588d71f62282d26fcde2ff90223 (patch) | |
tree | e731434cafbb0e179e514a64afa6892127517866 /buildscripts/makedist.py | |
parent | effedd950de374a91ab415e66f405a2ae4a3885b (diff) | |
download | mongo-ffcce1a0a58f3588d71f62282d26fcde2ff90223.tar.gz |
Make makedist.py work on Python 2.5 MINOR
Diffstat (limited to 'buildscripts/makedist.py')
-rwxr-xr-x | buildscripts/makedist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildscripts/makedist.py b/buildscripts/makedist.py index 311dfe7b6fc..966d6af5995 100755 --- a/buildscripts/makedist.py +++ b/buildscripts/makedist.py @@ -46,6 +46,7 @@ # The implementations of steps 1, 2, 4, 5, 6, and 7 will depend on the # distro of host we're talking to (Ubuntu, CentOS, Debian, etc.). +from __future__ import with_statement import subprocess import sys import getopt |