/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/win32utils.py

  • Committer: Martin Pool
  • Date: 2010-04-23 00:44:15 UTC
  • mto: This revision was merged to the branch mainline in revision 5189.
  • Revision ID: mbp@canonical.com-20100423004415-py8ozrtkjo6tphj2
Update more code to use user_transport when it should

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
import glob
23
23
import os
 
24
import re
24
25
import struct
25
26
import sys
26
27
 
568
569
                if argv[idx][:1] != '-':
569
570
                    break
570
571
            argv = argv[idx+1:]
571
 
        # we should remove '--profile-imports' option as well (bug #588277)
572
 
        # see bzr script ~ line 54
573
 
        if '--profile-imports' in argv and '--profile-imports' not in sys.argv:
574
 
            argv.remove('--profile-imports')
575
572
        return argv
576
573
else:
577
574
    get_unicode_argv = None