hartleybrody / public-amazon-crawler

676 stars 227 forks source link

syntax error #3

Closed staticabhi closed 7 years ago

staticabhi commented 7 years ago

Hey,

I'm getting system error @ "print "{}: {}".format(datetime.now(), msg)" in helpers.

hartleybrody commented 7 years ago

You might be using python 3? If so, the syntax for that line should read:

print("{}: {}".format(datetime.now(), msg))

Let me know if that works!

staticabhi commented 7 years ago

Hey, Yes.. it resolved the issue.. thanks for help!