Commit 35ffe41f authored by Godefroid Chapelle's avatar Godefroid Chapelle

python 3 compat

parent 5e018a2f
...@@ -1234,7 +1234,7 @@ class Buildout(DictMixin): ...@@ -1234,7 +1234,7 @@ class Buildout(DictMixin):
runsetup = setup # backward compat. runsetup = setup # backward compat.
def annotate(self, args=None): def annotate(self, args=None):
verbose = self['buildout'].get('verbosity', 0) <> 0 verbose = self['buildout'].get('verbosity', 0) != 0
section = None section = None
if args is None: if args is None:
sections = [] sections = []
......
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