From: Mike Frysinger Date: Thu, 24 May 2012 03:48:16 +0000 (-0400) Subject: repoman: tweak elif vcs check style to be consistent X-Git-Tag: v2.2.0_alpha108~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d0ed9b0120792841dffd3d0ae7b3306e0f1d1583;p=portage.git repoman: tweak elif vcs check style to be consistent Signed-off-by: Mike Frysinger --- diff --git a/bin/repoman b/bin/repoman index 369740335..fd87847bb 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1129,7 +1129,7 @@ if vcs == "cvs": if options.if_modified == "y": myremoved = cvstree.findremoved(mycvstree, recursive=1, basedir="./") -if vcs == "svn": +elif vcs == "svn": with os.popen("svn status") as f: svnstatus = f.readlines() mychanged = [ "./" + elem.split()[-1:][0] for elem in svnstatus if elem and elem[:1] in "MR" ]