Commit 2226a2ea authored by Alex Clark's avatar Alex Clark

Fix Py3 regression

parent 4e26499a
Change History
**************
2.2.3 (2014-10-30)
==================
- Fix #197, Python 3 regression
[aclark4life]
2.2.2 (2014-10-30)
==================
......
......@@ -12,7 +12,7 @@
#
##############################################################################
name = "zc.buildout"
version = "2.2.2"
version = "2.2.3"
import os
from setuptools import setup
......
......@@ -653,7 +653,7 @@ class Installer:
if dist is None:
try:
dist = best[req.key] = env.best_match(req, ws)
except pkg_resources.VersionConflict, err:
except pkg_resources.VersionConflict as err:
raise VersionConflict(err, ws)
if dist is None:
if dest:
......
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