Skip to content

Commit

Permalink
Merge pull request #1310 from zjuchenyuan/patch-1
Browse files Browse the repository at this point in the history
Update event_call.py
  • Loading branch information
montyly authored Oct 3, 2022
2 parents 3738968 + 3ac6f56 commit cf4ab2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slither/slithir/operations/event_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def read(self):

def __str__(self):
args = [str(a) for a in self.arguments]
return f"Emit {self.name}({'.'.join(args)})"
return f"Emit {self.name}({','.join(args)})"

0 comments on commit cf4ab2b

Please sign in to comment.