~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to scriptlib.py

  • Committer: abentley
  • Date: 2005-05-01 12:36:53 UTC
  • Revision ID: abentley@lappy-20050501123653-744e6a1b9c19b316
Finished implementing bzr-pull

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
if __name__ == "__main__":
61
61
    import doctest
62
62
    bzrlib.trace.create_tracefile([])
63
 
result = doctest.testmod()
64
 
if result[0] == 0 and result[1] > 0:
65
 
    print "All tests passed"
 
63
    result = doctest.testmod()
 
64
    if result[0] == 0 and result[1] > 0:
 
65
        print "All tests passed"