summaryrefslogtreecommitdiffstats
path: root/nova/loadables.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/loadables.py')
-rw-r--r--nova/loadables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/loadables.py b/nova/loadables.py
index 0c930267e..964845184 100644
--- a/nova/loadables.py
+++ b/nova/loadables.py
@@ -49,7 +49,7 @@ from nova.openstack.common import importutils
class BaseLoader(object):
def __init__(self, loadable_cls_type):
mod = sys.modules[self.__class__.__module__]
- self.path = mod.__path__[0]
+ self.path = os.path.abspath(mod.__path__[0])
self.package = mod.__package__
self.loadable_cls_type = loadable_cls_type