Commit cfa04789 authored by Alex Clark's avatar Alex Clark

Fix Windows regression

parent 3f254259
......@@ -1844,7 +1844,11 @@ def main(args=None):
try:
buildout = Buildout(config_file, options,
user_defaults, windows_restart,
command, args)
# XXX What or why is this `args` parameter here? If this is for
# the new include-packages-on-command-line-feature, then it
# currently breaks Windows support (not sure why yet)
# command, args)
command)
getattr(buildout, command)(args)
except Exception, v:
_doing()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment