Formatting

This commit is contained in:
Rudi Grinberg 2012-10-29 14:40:24 -04:00
parent a3be821f3f
commit 18d8e24a56
1 changed files with 2 additions and 4 deletions

View File

@ -47,10 +47,8 @@ def convert_dict_value_to_utf8(md):
class UrlException(Exception): pass
class IncompleteUrl(UrlException):
def __init__(self, url):
self.url = url
def __str__(self):
return "Incomplete url: '%s'" % self.url
def __init__(self, url): self.url = url
def __str__(self): return "Incomplete url: '%s'" % self.url
class UrlBadParam(UrlException):
def __init__(self, url, param):