~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/win32utils.py

  • Committer: Jason Spashett
  • Date: 2010-06-18 11:07:07 UTC
  • mto: This revision was merged to the branch mainline in revision 5315.
  • Revision ID: jason@spashett.com-20100618110707-me59kfy33lux7doc
Take away removal of --profile-imports from bzr script. Instead ignore this in global options bzrlib/commands.py run_bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
545
545
    # args from the very same PEB as does GetCommandLineW
546
546
    arguments = list(s)
547
547
    
548
 
    # Bug #588277 remove the --profile-imports from the command line arguments
549
 
    # as is also done in the main bzr module
550
 
    if '--profile-imports' not in sys.argv:
551
 
        if (False, '--profile-imports') in arguments:
552
 
            arguments.remove((False, '--profile-imports'))
553
 
        elif (True, '--profile-imports') in arguments:
554
 
            arguments.remove((True, '--profile-imports'))
555
 
    
556
548
    # Now shorten the command line we get from GetCommandLineW to match sys.argv
557
549
    if len(arguments) < len(sys.argv):
558
550
        from bzrlib.errors import InternalBzrError