Compare commits

...

2 Commits
0.6.3 ... 0.6.4

Author SHA1 Message Date
ShyPike
31b620b8e5 Update text files for 0.6.4 2011-06-07 23:59:42 +02:00
ShyPike
55786df7bd Fix 'have_sll' crash in the Wizard. 2011-06-07 23:56:35 +02:00
3 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
-------------------------------------------------------------------------------
0.6.4Final by The SABnzbd-Team
-------------------------------------------------------------------------------
- Fix silly error in the Wizard
-------------------------------------------------------------------------------
0.6.3Final by The SABnzbd-Team
-------------------------------------------------------------------------------

View File

@@ -1,7 +1,7 @@
Metadata-Version: 1.0
Name: SABnzbd
Version: 0.6.3
Summary: SABnzbd-0.6.3
Version: 0.6.4
Summary: SABnzbd-0.6.4
Home-page: http://sourceforge.net/projects/sabnzbdplus
Author: The SABnzbd Team
Author-email: team@sabnzbd.org

View File

@@ -88,6 +88,7 @@ class Wizard(object):
info['session'] = cfg.api_key()
info['language'] = cfg.language()
info['T'] = Ttemplate
info['have_ssl'] = bool(sabnzbd.newswrapper.HAVE_SSL)
servers = config.get_servers()
if not servers:
@@ -106,7 +107,6 @@ class Wizard(object):
info['username'] = s.username()
info['password'] = s.password.get_stars()
info['connections'] = s.connections()
info['have_ssl'] = bool(sabnzbd.newswrapper.HAVE_SSL)
info['ssl'] = s.ssl()
if s.enable():