Add in default bucket, edit image url checks

This commit is contained in:
Vik Paruchuri
2013-03-26 11:04:14 -04:00
parent 8afe2eb001
commit 97cb4910a7
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ class URLProperties(object):
Runs all available url tests
@return: True if URL passes tests, false if not.
"""
url_is_okay = self.check_suffix() and self.check_if_parses() and self.check_domain()
url_is_okay = self.check_suffix() and self.check_if_parses()
return url_is_okay
def check_domain(self):