Changeset - abb00ff224b6
[Not reviewed]
default
0 1 0
Mads Kiilerich - 6 years ago 2020-02-05 23:03:23
mads@kiilerich.com
py3: automatic migration with 2to3 -f itertools
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/controllers/api/__init__.py
Show inline comments
 
@@ -172,7 +172,7 @@ class JSONRPCController(TGController):
 
        default_empty = type(NotImplemented)
 

	
 
        # kw arguments required by this method
 
        func_kwargs = dict(itertools.izip_longest(reversed(arglist), reversed(defaults),
 
        func_kwargs = dict(itertools.zip_longest(reversed(arglist), reversed(defaults),
 
                                                  fillvalue=default_empty))
 

	
 
        # This attribute will need to be first param of a method that uses
0 comments (0 inline, 0 general)