~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Martin Pool
  • Date: 2005-07-22 19:44:09 UTC
  • Revision ID: mbp@sourcefrog.net-20050722194409-9f99ffe3d62cf8c0
- tidy up imports to use full module names

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
        working inventory.
212
212
    """
213
213
    from bzrlib.inventory import Inventory
214
 
    from osutils import isdir, isfile, sha_string, quotefn, \
 
214
    from bzrlib.osutils import isdir, isfile, sha_string, quotefn, \
215
215
         local_time_offset, username, kind_marker, is_inside_any
216
216
    
217
 
    from branch import gen_file_id
218
 
    from errors import BzrError
219
 
    from revision import Revision
 
217
    from bzrlib.branch import gen_file_id
 
218
    from bzrlib.errors import BzrError
 
219
    from bzrlib.revision import Revision
220
220
    from bzrlib.trace import mutter, note
221
221
 
222
222
    any_changes = False