aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/diff.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-15 03:31:48 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-15 03:31:48 -0500
commit58bedebfddbb8e1fc8f0a441163526feaecb753b (patch)
treebb317cf59f834e45182aad4f816ea13f3fd76f6e /libbe/diff.py
parenteb26ca7e4a6886f97740c45e9e3b7bdd2d08d76f (diff)
downloadbugseverywhere-58bedebfddbb8e1fc8f0a441163526feaecb753b.tar.gz
Transition to Command-format complete.
Well, except for going through and updating the _long_help() strings. $ python test.py libbe.command succeeds for everything except Diff and Subscribe, which is expected since I haven't fixed up libbe.diff yet.
Diffstat (limited to 'libbe/diff.py')
-rw-r--r--libbe/diff.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/libbe/diff.py b/libbe/diff.py
index 7acce54..f8e5f91 100644
--- a/libbe/diff.py
+++ b/libbe/diff.py
@@ -638,7 +638,3 @@ class Diff (object):
def comment_body_change_string(self, bodies):
old_body,new_body = bodies
return difflib.unified_diff(old_body, new_body)
-
-
-if libbe.TESTING == True:
- suite = doctest.DocTestSuite()