summaryrefslogtreecommitdiff
path: root/glanceclient/shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'glanceclient/shell.py')
-rw-r--r--glanceclient/shell.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/glanceclient/shell.py b/glanceclient/shell.py
index 8cd2c2d..7449631 100644
--- a/glanceclient/shell.py
+++ b/glanceclient/shell.py
@@ -25,7 +25,6 @@ import getpass
import json
import logging
import os
-from os.path import expanduser
import sys
import traceback
@@ -551,7 +550,7 @@ class OpenStackImagesShell(object):
return client
def _cache_schemas(self, options, home_dir='~/.glanceclient'):
- homedir = expanduser(home_dir)
+ homedir = os.path.expanduser(home_dir)
if not os.path.exists(homedir):
try:
os.makedirs(homedir)