BIND 10 trac1541, updated. 64caf0ab35936f4df289032579783a63a5f26fee [1541] trivial cleanup: removed unnecessary EOL semilcolons.
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Mar 7 06:15:57 UTC 2012
The branch, trac1541 has been updated
via 64caf0ab35936f4df289032579783a63a5f26fee (commit)
from 803c513e70af98eb71d4fcd954ae1714b6f1c968 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 64caf0ab35936f4df289032579783a63a5f26fee
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Tue Mar 6 21:13:52 2012 -0800
[1541] trivial cleanup: removed unnecessary EOL semilcolons.
-----------------------------------------------------------------------
Summary of changes:
tools/git-obsolete-branch.py | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
-----------------------------------------------------------------------
diff --git a/tools/git-obsolete-branch.py b/tools/git-obsolete-branch.py
index 68ca51e..1c940ac 100755
--- a/tools/git-obsolete-branch.py
+++ b/tools/git-obsolete-branch.py
@@ -120,7 +120,7 @@ def branch_print(branches, csv, print_merged, print_notmerged, print_stats):
print("NOT merged branches: %s" % (notmerged_str))
if (print_stats):
- print("#----------");
+ print("#----------")
print("#Merged : %d" % merged)
print("#Not merged: %d" % notmerged)
@@ -139,20 +139,20 @@ def main():
Lists all obsolete (fully merged into master) branches.
"""
- csv = False;
- merged = True;
- unmerged = False;
- stats = False;
+ csv = False
+ merged = True
+ unmerged = False
+ stats = False
for x in sys.argv[1:]:
if x == "--csv":
- csv = True;
+ csv = True
elif x == "--unmerged":
- unmerged = True;
+ unmerged = True
elif x == "--skip-merged":
- merged = False;
+ merged = False
elif x == "--stats":
- stats = True;
+ stats = True
elif x == "--help":
show_help()
return
More information about the bind10-changes
mailing list