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 AF466138A1A for ; Wed, 4 Feb 2015 17:13:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FE99E089A; Wed, 4 Feb 2015 17:13:25 +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 CED3EE089A for ; Wed, 4 Feb 2015 17:13:24 +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 EA0943406F1 for ; Wed, 4 Feb 2015 17:13:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12242110C0 for ; Wed, 4 Feb 2015 17:13:22 +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: <1423068929.69b440f93cd3e7d83183eff1e1caaaa8ea844fef.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/laymanator/ X-VCS-Repository: proj/layman X-VCS-Files: layman/laymanator/__init__.py X-VCS-Directories: layman/laymanator/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 69b440f93cd3e7d83183eff1e1caaaa8ea844fef X-VCS-Branch: master Date: Wed, 4 Feb 2015 17:13:22 +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: bc5e4d14-e549-4db4-a264-13b3a00cd8f1 X-Archives-Hash: c4be77d12e521981538d88157034d9dc commit: 69b440f93cd3e7d83183eff1e1caaaa8ea844fef Author: Devan Franchini gentoo org> AuthorDate: Wed Feb 4 16:55:29 2015 +0000 Commit: Devan Franchini gentoo org> CommitDate: Wed Feb 4 16:55:29 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=69b440f9 laymanator/__init__.py: Adds a delete of layman object after import check --- layman/laymanator/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/layman/laymanator/__init__.py b/layman/laymanator/__init__.py index 62540ba..890302c 100644 --- a/layman/laymanator/__init__.py +++ b/layman/laymanator/__init__.py @@ -13,6 +13,7 @@ from portage.sync.config_checks import CheckSyncConfig try: import layman config_class = 'PyLayman' + del layman except ImportError: config_class = 'Layman'