Skip to content

Commit

Permalink
Merge pull request #65 from mickael9/patch-1
Browse files Browse the repository at this point in the history
expr.py : fix modulo symbol
  • Loading branch information
arekbulski committed Aug 22, 2016
2 parents 4106be2 + be460f7 commit a2c5140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion construct/lib/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
operator.mul : "*",
operator.div : "/",
operator.floordiv : "//",
operator.mod : "+",
operator.mod : "%",
operator.pow : "**",
operator.xor : "^",
operator.lshift : "<<",
Expand Down

0 comments on commit a2c5140

Please sign in to comment.