summaryrefslogtreecommitdiffstats
path: root/__init__.py
diff options
context:
space:
mode:
authorSean B. Palmer <http://inamidst.com/sbp/>2008-04-26 15:54:35 +0100
committerSean B. Palmer <http://inamidst.com/sbp/>2008-04-26 15:54:35 +0100
commit986953131d1e399a9b277984a2234cd0c5f7656c (patch)
treebabe5d30a618c40b059421b43a9ca19b9b1beb14 /__init__.py
parent286d4a8497621d2f3c0f1f8d66db60b11c87fad5 (diff)
downloadbot-986953131d1e399a9b277984a2234cd0c5f7656c.tar.gz
bot-986953131d1e399a9b277984a2234cd0c5f7656c.tar.bz2
bot-986953131d1e399a9b277984a2234cd0c5f7656c.zip
Allow the user to configure the port in the config, and other fixes.
Diffstat (limited to '__init__.py')
-rwxr-xr-x__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py
index 16309f0..3b1c556 100755
--- a/__init__.py
+++ b/__init__.py
@@ -34,7 +34,7 @@ def run_phenny(config):
def connect(config):
p = bot.Phenny(config)
- p.run(config.host)
+ p.run(config.host, config.port)
Watcher()
while True: