summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-05-23 20:40:49 -0700
committerJohn Wiegley <johnw@newartisans.com>2013-05-23 20:40:49 -0700
commit900af573319c3787854abc5653c8133d37eb013f (patch)
tree0659f332aea3dbfa579580eda3d36bb1bd5c405d /acprep
parent7108f25590adc18adc70d0ba77f0d3931796ea04 (diff)
parent119e337f4bf74df72f7cf1af580353522634a738 (diff)
downloadfork-ledger-900af573319c3787854abc5653c8133d37eb013f.tar.gz
fork-ledger-900af573319c3787854abc5653c8133d37eb013f.tar.bz2
fork-ledger-900af573319c3787854abc5653c8133d37eb013f.zip
Merge pull request #189 from Travis-Snoozy/master
Make acprep use "str.split" not "string.split"
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep2
1 files changed, 1 insertions, 1 deletions
diff --git a/acprep b/acprep
index be81790e..f5b699b0 100755
--- a/acprep
+++ b/acprep
@@ -248,7 +248,7 @@ class PrepareBuild(CommandLineApp):
self.envvars[varname] = os.environ[varname]
if varname.endswith('FLAGS'):
- self.__dict__[varname] = string.split(os.environ[varname])
+ self.__dict__[varname] = str.split(os.environ[varname])
self.envvars[varname] = ''
# If ~/Products/ or build/ exists, use them instead of the source tree