mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +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:
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):
|
||||
|
Loading…
Reference in New Issue
Block a user