From f96a5a1cf8800edc2f6a6d73316f7d7c67f32e29 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 30 Jan 2011 16:20:37 +0100 Subject: cleanup code --- module/plugins/hoster/YourfilesTo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'module/plugins/hoster/YourfilesTo.py') diff --git a/module/plugins/hoster/YourfilesTo.py b/module/plugins/hoster/YourfilesTo.py index 90c261d02..18f2d3edf 100644 --- a/module/plugins/hoster/YourfilesTo.py +++ b/module/plugins/hoster/YourfilesTo.py @@ -36,7 +36,7 @@ class YourfilesTo(Hoster): self.wait() def get_waiting_time(self): - if self.html == None: + if self.html is None: self.download_html() #var zzipitime = 15; @@ -60,7 +60,7 @@ class YourfilesTo(Hoster): return url; def get_file_name(self): - if self.html == None: + if self.html is None: self.download_html() return re.search("(.*)", self.html).group(1) @@ -68,10 +68,10 @@ class YourfilesTo(Hoster): def file_exists(self): """ returns True or False """ - if self.html == None: + if self.html is None: self.download_html() - if re.search(r"HTTP Status 404", self.html) != None: + if re.search(r"HTTP Status 404", self.html) is not None: return False else: return True -- cgit v1.2.3