Skip to content

Commit

Permalink
Fixed small syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
infosecB authored Apr 14, 2018
1 parent 2d1d93e commit d5019c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions normalize_atpsafelink.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ def normalize_atpsafelink(safelink_url):
return safelink_url


def main():
print normalize_atpsafelink(args.url)
def main(url):
print normalize_atpsafelink(url)


if __name__ == "__main__":
Expand Down

0 comments on commit d5019c7

Please sign in to comment.