rename hippotat module to hippotatlib
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 3 Apr 2017 12:01:28 +0000 (13:01 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 3 Apr 2017 12:01:28 +0000 (13:01 +0100)
client
hippotatlib/__init__.py [moved from hippotat/__init__.py with 99% similarity]
hippotatlib/slip.py [moved from hippotat/slip.py with 100% similarity]
server

diff --git a/client b/client
index 062b992..2f88d5e 100755 (executable)
--- a/client
+++ b/client
@@ -1,6 +1,6 @@
 #!/usr/bin/python3
 
-from hippotat import *
+from hippotatlib import *
 
 import twisted.web
 import twisted.web.client
similarity index 99%
rename from hippotat/__init__.py
rename to hippotatlib/__init__.py
index 654a5c5..48ece83 100644 (file)
@@ -33,7 +33,7 @@ import traceback
 
 import re as regexp
 
-import hippotat.slip as slip
+import hippotatlib.slip as slip
 
 class DBG(twisted.python.constants.Names):
   INIT = NamedConstant()
similarity index 100%
rename from hippotat/slip.py
rename to hippotatlib/slip.py
diff --git a/server b/server
index c83e6b2..1e9348e 100755 (executable)
--- a/server
+++ b/server
@@ -1,6 +1,6 @@
 #!/usr/bin/python3
 
-from hippotat import *
+from hippotatlib import *
 
 import os