Formatting
This commit is contained in:
parent
a3be821f3f
commit
18d8e24a56
|
@ -47,10 +47,8 @@ def convert_dict_value_to_utf8(md):
|
||||||
class UrlException(Exception): pass
|
class UrlException(Exception): pass
|
||||||
|
|
||||||
class IncompleteUrl(UrlException):
|
class IncompleteUrl(UrlException):
|
||||||
def __init__(self, url):
|
def __init__(self, url): self.url = url
|
||||||
self.url = url
|
def __str__(self): return "Incomplete url: '%s'" % self.url
|
||||||
def __str__(self):
|
|
||||||
return "Incomplete url: '%s'" % self.url
|
|
||||||
|
|
||||||
class UrlBadParam(UrlException):
|
class UrlBadParam(UrlException):
|
||||||
def __init__(self, url, param):
|
def __init__(self, url, param):
|
||||||
|
|
Loading…
Reference in New Issue