~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/atomicfile.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        global _hostname
52
52
 
53
53
        self._fd = None
54
 
        assert mode in ('wb', 'wt'), \
55
 
            "invalid AtomicFile mode %r" % mode
56
54
 
57
55
        if _hostname is None:
58
 
            _hostname = socket.gethostname()
 
56
            _hostname = osutils.get_host_name()
59
57
 
60
58
        self.tmpfilename = '%s.%d.%s.tmp' % (filename, _pid, _hostname)
61
59
 
64
62
        flags = os.O_EXCL | os.O_CREAT | os.O_WRONLY
65
63
        if mode == 'wb':
66
64
            flags |= osutils.O_BINARY
 
65
        elif mode != 'wt':
 
66
            raise ValueError("invalid AtomicFile mode %r" % mode)
67
67
 
68
68
        if new_mode is not None:
69
69
            local_mode = new_mode