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

fix os import as needed on Windows

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
page on Launchpad, https://launchpad.net/bzr-fastimport.
44
44
"""
45
45
 
46
 
 
47
46
from bzrlib.commands import Command, register_command
48
47
from bzrlib.option import Option, ListOption
49
48
 
67
66
        stream = sys.stdin
68
67
        try:
69
68
            import msvcrt
 
69
            import os
70
70
            msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
71
71
        except ImportError:
72
72
            pass