ckan / datapusher

A standalone web service that pushes data files from a CKAN site resources into its DataStore
GNU Affero General Public License v3.0
77 stars 154 forks source link

fix: py3 support #189

Closed obdulia-losantos closed 4 years ago

obdulia-losantos commented 4 years ago

https://docs.python.org/3.3/whatsnew/3.0.html?highlight=execfile#builtins

Removed execfile(). Instead of execfile(fn) use exec(open(fn).read()).

amercader commented 4 years ago

Thanks @obdulia-losantos !