diff --git a/couchpotato/core/plugins/browser/main.py b/couchpotato/core/plugins/browser/main.py index 90f2673c..aa11b220 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 diff --git a/couchpotato/core/providers/torrent/publichd/main.py b/couchpotato/core/providers/torrent/publichd/main.py index cf0e6878..5996fe92 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({ diff --git a/version.py b/version.py index 05bb89ed..0c7bd682 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -VERSION = '2.0.0.pre1' +VERSION = '2.0.0.pre2' BRANCH = 'master'