Skip to content

Commit c4e4ef6

Browse files
authored
Merge pull request #290 from liranbg/fix-strinfigying-rql-query
bug: fix query representation to string
2 parents bc1a75a + 99c521d commit c4e4ef6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rethinkdb/ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ def compose(self, args, optargs):
647647
]
648648

649649
if self.infix:
650-
return T("(", T(*t_args, intsp=[" ", self.statement_infix, " "]), ")")
650+
return T("(", T(*t_args, intsp=[" ", self.st_infix, " "]), ")")
651651
else:
652652
return T("r.", self.statement, "(", T(*t_args, intsp=", "), ")")
653653

0 commit comments

Comments
 (0)