/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Parth Malwankar
  • Date: 2010-03-06 05:28:17 UTC
  • mto: (5094.3.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5107.
  • Revision ID: parth.malwankar@gmail.com-20100306052817-5ygp4co5l6frp0d1
removed parent_dir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
242
242
    _rollover_trace_maybe(_bzr_log_filename)
243
243
    try:
244
244
        buffering = 0 # unbuffered
245
 
        ownership_src = osutils.parent_dir(_bzr_log_filename)
246
 
        bzr_log_file = osutils.open_with_ownership(_bzr_log_filename, 'at', buffering, ownership_src)
 
245
        bzr_log_file = osutils.open_with_ownership(_bzr_log_filename, 'at', buffering)
247
246
        # bzr_log_file.tell() on windows always return 0 until some writing done
248
247
        bzr_log_file.write('\n')
249
248
        if bzr_log_file.tell() <= 2: