From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-commits+bounces-338403-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QDdox-0001Qm-Hx
	for garchives@archives.gentoo.org; Sat, 23 Apr 2011 14:28:27 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 7E5931C015;
	Sat, 23 Apr 2011 14:28:18 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id 532AE1C015
	for <gentoo-commits@lists.gentoo.org>; Sat, 23 Apr 2011 14:28:18 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 9C9861B4028
	for <gentoo-commits@lists.gentoo.org>; Sat, 23 Apr 2011 14:28:17 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 0543080371
	for <gentoo-commits@lists.gentoo.org>; Sat, 23 Apr 2011 14:28:17 +0000 (UTC)
From: "Magnus Granberg" <zorry@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" <zorry@gentoo.org>
Message-ID: <88293d7cad719d3fce2ef9f2054e5c6bd8946d0b.zorry@gentoo>
Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/
X-VCS-Repository: dev/zorry
X-VCS-Files: gobs/pym/repoman.py
X-VCS-Directories: gobs/pym/
X-VCS-Committer: zorry
X-VCS-Committer-Name: Magnus Granberg
X-VCS-Revision: 88293d7cad719d3fce2ef9f2054e5c6bd8946d0b
Date: Sat, 23 Apr 2011 14:28:17 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: 2d04220aec5da4a895c41ea1c9b4bc36

commit:     88293d7cad719d3fce2ef9f2054e5c6bd8946d0b
Author:     Magnus Granberg <zorry <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 23 14:27:44 2011 +0000
Commit:     Magnus Granberg <zorry <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 14:27:44 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D=
commit;h=3D88293d7c

fix a import syntax

---
 gobs/pym/repoman.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/gobs/pym/repoman.py b/gobs/pym/repoman.py
index 81e0aae..c495d80 100644
--- a/gobs/pym/repoman.py
+++ b/gobs/pym/repoman.py
@@ -1,10 +1,12 @@
+import sys
+import os
 import portage
 from portage import os, _encodings, _unicode_decode
 from portage import _unicode_encode
 from portage.exception import DigestException, FileNotFound, ParseError,=
 PermissionDenied
 from _emerge.Package import Package
 from _emerge.RootConfig import RootConfig
-import run_checks from repoman.checks
+from repoman.checks import run_checks
 import codecs
=20
 class gobs_repoman(object):