summaryrefslogtreecommitdiff
path: root/virtinst/storage.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2015-08-10 12:35:13 -0400
committerCole Robinson <crobinso@redhat.com>2015-08-10 12:35:13 -0400
commite22aeac5ae23b03e79e1d18c5fc7c6f2ca8b7a8d (patch)
tree7c881a8e755e4114e5ff7c9d5b0b7ecce02a3634 /virtinst/storage.py
parent59b30c81a0a31c74138a6fed6ae68e79e048836a (diff)
downloadvirt-manager-e22aeac5ae23b03e79e1d18c5fc7c6f2ca8b7a8d.tar.gz
storage: session path should be ~/.local/share/libvirt/images
Not .local/libvirt/images :/ App dirs aren't supposed to be in ~/.local
Diffstat (limited to 'virtinst/storage.py')
-rw-r--r--virtinst/storage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/virtinst/storage.py b/virtinst/storage.py
index 9e90db81..285acb84 100644
--- a/virtinst/storage.py
+++ b/virtinst/storage.py
@@ -81,7 +81,7 @@ class _StorageObject(XMLBuilder):
def _get_default_pool_path(conn):
path = "/var/lib/libvirt/images"
if conn.is_session_uri():
- path = os.path.expanduser("~/.local/libvirt/images")
+ path = os.path.expanduser("~/.local/share/libvirt/images")
return path