← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~stevenk/launchpad/specify-branch-mp-status into lp:launchpad/devel

 

Steve Kowalik has proposed merging lp:~stevenk/launchpad/specify-branch-mp-status into lp:launchpad/devel.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)


This branch just adds the ability to specify one branch for a user to specify in rocketfuel-mp-status.
-- 
https://code.launchpad.net/~stevenk/launchpad/specify-branch-mp-status/+merge/35501
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~stevenk/launchpad/specify-branch-mp-status into lp:launchpad/devel.
=== modified file 'utilities/rocketfuel-mp-status'
--- utilities/rocketfuel-mp-status	2010-07-16 10:14:48 +0000
+++ utilities/rocketfuel-mp-status	2010-09-15 08:15:59 +0000
@@ -13,6 +13,8 @@
     '. ~/.rocketfuel-env.sh && echo $LP_PROJECT_PATH')
 os.chdir(projpath)
 branches = os.listdir('.')
+if sys.argv[1]:
+    branches = (sys.argv[1],)
 lp_branches = launchpad.branches
 
 for lb in branches: