Skip to content

Commit 8a325bd

Browse files
committed
Fix logging statement
1 parent b573902 commit 8a325bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commercetools/testing/predicates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ def __init__(self, predicate, schema):
428428
self.schema = schema
429429
ast_node = self.parse(predicate)
430430
self._code = compile(ast_node, "internal.py", mode="eval")
431-
logger.info("Compiled python code:", ast.dump(ast_node))
431+
logger.info("Compiled python code: %s", ast.dump(ast_node))
432432

433433
def match(self, obj):
434434
try:

0 commit comments

Comments
 (0)