Merge pull request #189 from Travis-Snoozy/master

Make acprep use "str.split" not "string.split"
This commit is contained in:
John Wiegley 2013-05-23 20:40:49 -07:00
commit 900af57331

2
acprep
View file

@ -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