Raise NotImplementedError instead of NotImplemented

Change-Id: I1a01a5ad60d0eff1609d422578b38fb19923746f
This commit is contained in:
Christian Berendt 2014-07-04 13:14:01 +02:00
parent ea72206627
commit 3419ecc745

View File

@ -637,10 +637,10 @@ class BaseStore(glance.store.base.Store):
raise
def get_connection(self):
raise NotImplemented()
raise NotImplementedError()
def create_location(self):
raise NotImplemented()
raise NotImplementedError()
class SingleTenantStore(BaseStore):