summaryrefslogtreecommitdiffstats
path: root/pyanaconda/ui
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2013-01-22 13:21:44 -0600
committerDavid Lehman <dlehman@redhat.com>2013-01-28 13:15:41 -0600
commit965e7d96895ec387260871407a76c5fa66aa4fc1 (patch)
tree9e0b2a876a123a2564ec76564062e47a09a400e8 /pyanaconda/ui
parent0bf6ce7f68391b41a4c8d76e6ba4a036404b2029 (diff)
downloadanaconda-965e7d96895ec387260871407a76c5fa66aa4fc1.tar.gz
anaconda-965e7d96895ec387260871407a76c5fa66aa4fc1.tar.xz
anaconda-965e7d96895ec387260871407a76c5fa66aa4fc1.zip
Move pyanaconda.packaging.get_mount_* into blivet.util.
Diffstat (limited to 'pyanaconda/ui')
-rw-r--r--pyanaconda/ui/gui/spokes/source.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pyanaconda/ui/gui/spokes/source.py b/pyanaconda/ui/gui/spokes/source.py
index cbd25145b..84315a14f 100644
--- a/pyanaconda/ui/gui/spokes/source.py
+++ b/pyanaconda/ui/gui/spokes/source.py
@@ -42,9 +42,11 @@ from pyanaconda.ui.gui.utils import enlightbox, gtk_thread_wait
from pyanaconda.iutil import ProxyString, ProxyStringError
from pyanaconda.ui.gui.utils import gtk_call_once
from pyanaconda.threads import threadMgr, AnacondaThread
-from pyanaconda.packaging import PayloadError, get_mount_paths, MetadataError
+from pyanaconda.packaging import PayloadError, MetadataError
from pyanaconda.constants import DRACUT_ISODIR, ISO_DIR
+from blivet.util import get_mount_paths
+
__all__ = ["SourceSpoke"]
BASEREPO_SETUP_MESSAGE = N_("Setting up installation source...")