mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
Fix syntax error in sql-rewrite.py
On python 3.4.2 having kwargs after unpacking a dict in a function call seems to be a syntax error.
This commit is contained in:
committed by
Christian Decker
parent
fe17acf07b
commit
4c2f51ce13
@@ -12,7 +12,7 @@ DEBUG = False
|
||||
def eprint(*args, **kwargs):
|
||||
if not DEBUG:
|
||||
return
|
||||
print(*args, **kwargs, file=sys.stderr)
|
||||
print(*args, file=sys.stderr, **kwargs)
|
||||
|
||||
|
||||
class Rewriter(object):
|
||||
|
||||
Reference in New Issue
Block a user