From: Danny Al-Gaaf Date: Thu, 21 Mar 2013 15:04:06 +0000 (+0100) Subject: config.py: add missing import for os.path X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c276693202e5d704184c43aa8fde87709fae09bb;p=ceph-deploy.git config.py: add missing import for os.path Signed-off-by: Danny Al-Gaaf --- diff --git a/ceph_deploy/config.py b/ceph_deploy/config.py index f12ae8f..6dba8b8 100644 --- a/ceph_deploy/config.py +++ b/ceph_deploy/config.py @@ -47,6 +47,8 @@ def get_file(path): pass def config_pull(args): + import os.path + topath = '{cluster}.conf'.format(cluster=args.cluster) frompath = '/etc/ceph/{cluster}.conf'.format(cluster=args.cluster)