Fix bogus NotImplementedError on Area.index_uris
This commit is contained in:
parent
773cd337f1
commit
b2e5ce32a9
1 changed files with 5 additions and 5 deletions
|
@ -85,11 +85,11 @@ class Area(SQLBase):
|
|||
yield (base_uri + '.' + ext, ext)
|
||||
else:
|
||||
yield (base_uri, None)
|
||||
|
||||
raise NotImplementedError(
|
||||
'Do not know how to build index URI for Distribution type %s' %
|
||||
self.distribution.type
|
||||
)
|
||||
else:
|
||||
raise NotImplementedError(
|
||||
'Do not know how to build index URI for Distribution type %s' %
|
||||
self.distribution.type
|
||||
)
|
||||
|
||||
def __repr__(self):
|
||||
return 'Area(%s of %s)' % (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue