@@ -0,0 +1,8 @@
+
+# Connect to:
+HOST = "twgs"
+PORT = 2002
+# Listen on:
+LISTEN_PORT = 2002
+LISTEN_ON = "0.0.0.0"
@@ -10,14 +10,16 @@ from twisted.python import log
from twisted.enterprise import adbapi
import pendulum
+from config import *
# Connect to:
-HOST = "127.0.0.1"
-PORT = 2002
+# HOST = "twgs"
+# PORT = 2002
# Listen on:
-LISTEN_PORT = 9999
-LISTEN_ON = "127.0.0.1"
+# LISTEN_PORT = 2002
+# LISTEN_ON = "0.0.0.0"
-cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zm]")
+cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
makeNL = re.compile(r"\x1b\[[0-9;]*[J]")