From 5851f226b68579be5a84bf73072f38cbac52c441 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 16 Sep 2012 10:11:04 +0200 Subject: [PATCH 1/3] Add more disks to Windows root directory. --- couchpotato/core/plugins/browser/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/browser/main.py b/couchpotato/core/plugins/browser/main.py index 90f2673..aa11b22 100644 --- a/couchpotato/core/plugins/browser/main.py +++ b/couchpotato/core/plugins/browser/main.py @@ -55,7 +55,7 @@ class FileBrowser(Plugin): driveletters = [] for drive in string.ascii_uppercase: - if win32file.GetDriveType(drive + ":") in [win32file.DRIVE_FIXED, win32file.DRIVE_REMOTE]: + if win32file.GetDriveType(drive + ":") in [win32file.DRIVE_FIXED, win32file.DRIVE_REMOTE, win32file.DRIVE_RAMDISK, win32file.DRIVE_REMOVABLE]: driveletters.append(drive + ":\\") return driveletters From 6e8b828cd4c35e5f4be008767f1cc0183f476251 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 16 Sep 2012 10:11:24 +0200 Subject: [PATCH 2/3] Use proper object get --- couchpotato/core/providers/torrent/publichd/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/torrent/publichd/main.py b/couchpotato/core/providers/torrent/publichd/main.py index cf0e687..5996fe9 100644 --- a/couchpotato/core/providers/torrent/publichd/main.py +++ b/couchpotato/core/providers/torrent/publichd/main.py @@ -24,7 +24,7 @@ class PublicHD(TorrentProvider): results = [] - if self.isDisabled() or quality['hd'] != True: + if self.isDisabled() or not quality.get('hd', False): return results params = tryUrlencode({ From 43e1adbff944651948e0242b46534bcf0cb8c2ce Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 16 Sep 2012 10:43:43 +0200 Subject: [PATCH 3/3] One up --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 81b487e..a038b50 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -VERSION = '2.0.0.pre1' +VERSION = '2.0.0.pre2' BRANCH = 'develop'