aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-05-23 23:48:16 -0400
committerMike Frysinger <vapier@gentoo.org>2012-05-24 01:51:40 -0400
commitd0ed9b0120792841dffd3d0ae7b3306e0f1d1583 (patch)
treee2e701cfe288a6620e877a3a7da244523110a09d /bin
parentvalidate_entry: handle KeyError for bug #417253 (diff)
downloadportage-d0ed9b0120792841dffd3d0ae7b3306e0f1d1583.tar.gz
portage-d0ed9b0120792841dffd3d0ae7b3306e0f1d1583.tar.bz2
portage-d0ed9b0120792841dffd3d0ae7b3306e0f1d1583.zip
repoman: tweak elif vcs check style to be consistent
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman2
1 files changed, 1 insertions, 1 deletions
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" ]