Bind to loopback interface by default
[mudpy.git] / mudpy / daemon.py
index 952831f..974f5e4 100644 (file)
@@ -1,18 +1,13 @@
-# Copyright (c) 2004-2017 Jeremy Stanley <fungi@yuggoth.org>. Permission
-# to use, copy, modify, and distribute this software is granted under
-# terms provided in the LICENSE file distributed with this software.
+# Copyright (c) 2004-2018 mudpy authors. Permission to use, copy,
+# modify, and distribute this software is granted under terms
+# provided in the LICENSE file distributed with this software.
 
 # core objects for the mudpy engine
+import importlib
 import sys
 
 import mudpy
 
-if sys.version_info >= (3, 4):
-    import importlib
-else:
-    # Python 3.3 lacks importlib.reload()
-    import imp as importlib
-
 
 def main():