/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/tests/test_msgeditor.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
            f = file('fed.bat', 'w')
103
103
            f.write("""\
104
104
@echo off
105
 
%s fed.py %%1
 
105
"%s" fed.py %%1
106
106
""" % sys.executable)
107
107
            f.close()
108
108
            os.environ['BZR_EDITOR'] = 'fed.bat'
123
123
        working_tree = self.make_uncommitted_tree()
124
124
 
125
125
        if sys.platform == 'win32':
126
 
            os.environ['BZR_EDITOR'] = 'del'
 
126
            os.environ['BZR_EDITOR'] = 'cmd.exe /c del'
127
127
        else:
128
128
            os.environ['BZR_EDITOR'] = 'rm'
129
129