anthill / open-moulinette

Scripts to clean Open-Data.
MIT License
40 stars 20 forks source link

Python 3: print "msg" => print("msg") #62

Closed wewxd closed 6 years ago

wewxd commented 6 years ago

The script to download the datasets from INSEE seems to use python 3, but the script doesn't work with python 3 because print is now a function. I just replaced print "msg" with print("msg"), which is also compatible with python 2 anyway

vallettea commented 6 years ago

thanks