From ec3256d8b37eda6341d53d0a76a0f1a9ae6a739c Mon Sep 17 00:00:00 2001 From: Mike Bayer <mike_mp@zzzcomputing.com> Date: Fri, 12 Nov 2010 18:49:39 -0500 Subject: [PATCH] - Fixed missing **extra collection in setup.py which prevented setup.py from running 2to3 on install. [ticket:148] --- CHANGES | 5 +++++ setup.py | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGES b/CHANGES index d25f1b9..17a0047 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,9 @@ 0.3.6 +- Fixed missing **extra collection in + setup.py which prevented setup.py + from running 2to3 on install. + [ticket:148] + - New flag on Template, TemplateLookup - strict_undefined=True, will cause variables not found in the context to diff --git a/setup.py b/setup.py index f6c6a66..c1c0805 100644 --- a/setup.py +++ b/setup.py @@ -64,4 +64,5 @@ ties to Python calling and scoping semantics. [babel.extractors] mako = mako.ext.babelplugin:extract """, + **extra ) -- GitLab