fixed bug in recent widget commit, thanks Gyuris

This commit is contained in:
Massimo Di Pierro
2012-05-11 08:28:24 -05:00
parent d2c37b1d68
commit 1251313f9c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.7 (2012-05-11 08:26:42) dev
Version 1.99.7 (2012-05-11 08:28:10) dev
+1 -1
View File
@@ -1000,7 +1000,7 @@ def start(cron=True):
(ip, port) = (options.ip, int(options.port))
# Check for non default value for ssl inputs
if (len(self.options.ssl_certificate) > 0) or (len(self.options.ssl_private_key) > 0):
if (len(options.ssl_certificate) > 0) or (len(options.ssl_private_key) > 0):
proto = 'https'
else:
proto = 'http'