From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 21583138CCE for ; Wed, 6 May 2015 01:13:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 753C4E086B; Wed, 6 May 2015 01:13:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1760EE086B for ; Wed, 6 May 2015 01:13:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BAAFD340C9B for ; Wed, 6 May 2015 01:13:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 246D198C for ; Wed, 6 May 2015 01:13:02 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1430874772.8eea549fd4f61b55a3939a0da2682f1749e474fb.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: pm_plugins/portage/sync/modules/laymansync/ X-VCS-Repository: proj/layman X-VCS-Files: pm_plugins/portage/sync/modules/laymansync/laymansync.py X-VCS-Directories: pm_plugins/portage/sync/modules/laymansync/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 8eea549fd4f61b55a3939a0da2682f1749e474fb X-VCS-Branch: master Date: Wed, 6 May 2015 01:13:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4ee1c27a-f6dd-4238-8365-c85eee1dc2be X-Archives-Hash: f301af7e5ad7fd008246223725a563e9 commit: 8eea549fd4f61b55a3939a0da2682f1749e474fb Author: Devan Franchini gentoo org> AuthorDate: Wed May 6 01:12:52 2015 +0000 Commit: Devan Franchini gentoo org> CommitDate: Wed May 6 01:12:52 2015 +0000 URL: https://gitweb.gentoo.org/proj/layman.git/commit/?id=8eea549f laymansync.py: Corrects importing of sync classes pm_plugins/portage/sync/modules/laymansync/laymansync.py | 4 ++-- 1 file 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