Use importlib in place of imp
authorJeremy Stanley <fungi@yuggoth.org>
Sat, 29 Jul 2017 15:01:08 +0000 (15:01 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sat, 29 Jul 2017 15:01:08 +0000 (15:01 +0000)
As of Python 3.4, the newer importlib module supports the reload()
function we need. Switch from the deprecated imp module, except
before 3.4 where we will simply pretend imp is importlib for
readability.


No differences found