summaryrefslogtreecommitdiffstats
path: root/phenny
diff options
context:
space:
mode:
Diffstat (limited to 'phenny')
-rwxr-xr-xphenny4
1 files changed, 4 insertions, 0 deletions
diff --git a/phenny b/phenny
index 1bc110b..6406dda 100755
--- a/phenny
+++ b/phenny
@@ -27,6 +27,7 @@ def create_default_config(fn):
print >> f, trim("""\
nick = 'phenny'
host = 'irc.example.net'
+ ssl = False
channels = ['#example', '#test']
owner = 'yournickname'
@@ -145,6 +146,9 @@ def main(argv=None):
if not hasattr(module, 'port'):
module.port = 6667
+ if not hasattr(module, 'ssl'):
+ module.ssl = False
+
if not hasattr(module, 'password'):
module.password = None