aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-11-16 14:14:49 -0500
committerW. Trevor King <wking@drexel.edu>2008-11-16 14:14:49 -0500
commit45640a0b55cebe2a04c9a35f3864c541b2e78cc1 (patch)
tree3aac94f1558e9db7f9fd1046e071fa842b138ea5 /libbe
parente7c376ed286b3bf741ae9e364eef7dd2114d77c7 (diff)
downloadbugseverywhere-45640a0b55cebe2a04c9a35f3864c541b2e78cc1.tar.gz
Removed the empty bugs 14c and 38b. Fixed bug.string() call in libbe/diff.py.
Diffstat (limited to 'libbe')
-rw-r--r--libbe/diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/diff.py b/libbe/diff.py
index fb3cfea..7a1dbcc 100644
--- a/libbe/diff.py
+++ b/libbe/diff.py
@@ -70,7 +70,7 @@ def diff_report(diff_data, bug_dir):
if len(removed) > 0:
print "Removed bug reports:"
for bug in removed:
- print bug.string(bug, bugs, shortlist=True)
+ print bug.string(bugs, shortlist=True)
def change_lines(old, new, attributes):
change_list = []