summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-08-08 17:18:34 -0400
committerThibault Saunier <tsaunier@gnome.org>2016-08-10 12:15:04 -0400
commit0c13cb14b3f6270199725a28ab3a6af3754a4106 (patch)
tree41aa01848ffe05e1cfdede87b91941cc50ba6670
parent9eddfaf1e840f8b9bd0aa68b649cfbfa90e2476d (diff)
Remove useless prints
Reviewed-by: Daniel Stone <daniels@collabora.com> Differential Revision: https://phabricator.freedesktop.org/D1262
-rwxr-xr-xgit-phab3
1 files changed, 0 insertions, 3 deletions
diff --git a/git-phab b/git-phab
index 7ea8b0a..9186546 100755
--- a/git-phab
+++ b/git-phab
@@ -1477,15 +1477,12 @@ Paste API Token from that page and press <enter>: """ % self.phabricator_uri)
top = dq.pop()
pq.append(top)
depends = top[0]['auxiliary']['phabricator:depends-on']
- print("* D{}:".format(top[0]['id']))
for p in depends:
revision, diff = self.get_revision_and_diff(phid=p)
if self.has_been_applied(revision):
- print("** D{}: Already applied".format(revision['id']))
continue
- print("** D{}".format(revision['id']))
dq.append((revision, diff))
return pq