Skip to content

Commit

Permalink
print compatible with Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ipapi-co authored Feb 15, 2017
1 parent cb8489a commit 6c18313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipapi/ipapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main(argv=None):
parser.add_argument('-k', '--key', dest='key', help='API key', default=None)
args = parser.parse_args(argv)

print location(args.ip, args.key, args.field)
print (location(args.ip, args.key, args.field))


if __name__ == "__main__":
Expand Down

0 comments on commit 6c18313

Please sign in to comment.