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)
commit9d92e6288e8e14a7213912b6480e33a72392af07
tree0591ecca85012952faf7c633401a434bc8513e4b
parent1c0623cbe57049eb56d8b4f559d1a1687a0a0c53
Use importlib in place of imp

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.
mudpy/__init__.py
mudpy/daemon.py