Skip to content

Commit

Permalink
Fixed v 1.1.11.0 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Dlesk committed Jan 12, 2012
1 parent c6601ad commit c86d5a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/ConfigFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ def CheckConfigForAllKeys(app_path):
if(config.has_option('SystemGenerated','blackhole_torrent_enabled') == False):
config.set('SystemGenerated','blackhole_torrent_enabled','0')
changesMade = True

if(config.has_option('SystemGenerated','torrent_kat_enabled') == False):
config.set('SystemGenerated','torrent_kat_enabled','0')
changesMade = True

if(config.has_option('SystemGenerated','api_key') == False):
apiKey = base64.b64encode(hashlib.sha256( str(random.getrandbits(256)) ).digest(), random.choice(['rA','aZ','gQ','hH','hG','aR','DD'])).rstrip('==')
Expand Down
2 changes: 1 addition & 1 deletion lib/Constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
def VersionNumber():
return "1.1.11.0"
return "1.1.12.0"

0 comments on commit c86d5a0

Please sign in to comment.