From: Zac Medico Date: Mon, 22 Oct 2007 23:32:24 +0000 (-0000) Subject: Fix broken imports. X-Git-Tag: v2.2_pre1~556 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1ef70e0e0b222b24d5288abe07793f6e6e0289d5;p=portage.git Fix broken imports. svn path=/main/trunk/; revision=8235 --- diff --git a/bin/repoman b/bin/repoman index 5fb624094..c133eb02d 100755 --- a/bin/repoman +++ b/bin/repoman @@ -50,8 +50,8 @@ except ImportError: del os.environ["PORTAGE_LEGACY_GLOBALS"] try: - from repoman.checks import EbuildWhitespaceCheck, EbuildHeaderCheck, EbuildQuoteCheck, \ - EbuildAssignmentCheck + from repoman.checks import EbuildWhitespace, EbuildHeader, EbuildQuote, \ + EbuildAssignment, EbuildNestedDie except ImportError: from os import path as osp sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), 'pym'))