~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to bzrtools.py

  • Committer: Aaron Bentley
  • Date: 2005-11-19 20:23:18 UTC
  • mto: This revision was merged to the branch mainline in revision 288.
  • Revision ID: aaron.bentley@utoronto.ca-20051119202318-949ba01504dc8b52
Updates to match API changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    1
48
48
    >>> is_clean(br)
49
49
    (False, [])
50
 
    >>> br.commit("added file")
 
50
    >>> br.working_tree().commit("added file")
51
51
    >>> is_clean(br)
52
52
    (True, [])
53
53
    >>> rm_branch(br)