aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Franchini <twitch153@gentoo.org>2015-05-05 21:12:52 -0400
committerDevan Franchini <twitch153@gentoo.org>2015-05-05 21:12:52 -0400
commit8eea549fd4f61b55a3939a0da2682f1749e474fb (patch)
tree7954ec4286092a9eba509e9412782befb84b287f /pm_plugins
parentpm_plugins/portage: Split up laymansync into sub-files to delay import of lay... (diff)
downloadlayman-8eea549fd4f61b55a3939a0da2682f1749e474fb.tar.gz
layman-8eea549fd4f61b55a3939a0da2682f1749e474fb.tar.bz2
layman-8eea549fd4f61b55a3939a0da2682f1749e474fb.zip
laymansync.py: Corrects importing of sync classes
Diffstat (limited to 'pm_plugins')
-rw-r--r--pm_plugins/portage/sync/modules/laymansync/laymansync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pm_plugins/portage/sync/modules/laymansync/laymansync.py b/pm_plugins/portage/sync/modules/laymansync/laymansync.py
index 9835beb..12ebe2d 100644
--- a/pm_plugins/portage/sync/modules/laymansync/laymansync.py
+++ b/pm_plugins/portage/sync/modules/laymansync/laymansync.py
@@ -5,9 +5,9 @@
try:
- from pylayman import PyLayman
+ from portage.sync.modules.laymansync.pylayman import PyLayman
CONFIG_CLASS = PyLayman
except ImportError:
- from subproc import Layman
+ from portage.sync.modules.laymansync.subproc import Layman
CONFIG_CLASS = Layman