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 ) id 1SXQwd-0006je-Pe for garchives@archives.gentoo.org; Thu, 24 May 2012 05:50:44 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FFF1E071E; Thu, 24 May 2012 05:50:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 12E14E071E for ; Thu, 24 May 2012 05:50:36 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74A231B4010 for ; Thu, 24 May 2012 05:50:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7822FE542A for ; Thu, 24 May 2012 05:50:33 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1337838700.d0ed9b0120792841dffd3d0ae7b3306e0f1d1583.vapier@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: d0ed9b0120792841dffd3d0ae7b3306e0f1d1583 X-VCS-Branch: master Date: Thu, 24 May 2012 05:50:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a83a8ba3-3345-417b-8eb8-963e1846e997 X-Archives-Hash: 5aa7e81eb4dff046ec8d67d64df1985c commit: d0ed9b0120792841dffd3d0ae7b3306e0f1d1583 Author: Mike Frysinger gentoo org> AuthorDate: Thu May 24 03:48:16 2012 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu May 24 05:51:40 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dd0ed9b01 repoman: tweak elif vcs check style to be consistent Signed-off-by: Mike Frysinger gentoo.org> --- bin/repoman | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/repoman b/bin/repoman index 3697403..fd87847 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1129,7 +1129,7 @@ if vcs =3D=3D "cvs": if options.if_modified =3D=3D "y": myremoved =3D cvstree.findremoved(mycvstree, recursive=3D1, basedir=3D= "./") =20 -if vcs =3D=3D "svn": +elif vcs =3D=3D "svn": with os.popen("svn status") as f: svnstatus =3D f.readlines() mychanged =3D [ "./" + elem.split()[-1:][0] for elem in svnstatus if el= em and elem[:1] in "MR" ]