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

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
 
39
39
def _get_filename(f):
40
 
    if hasattr(f, 'name'):
41
 
        return f.name
42
 
    return '<unknown>'
 
40
    return getattr(f, 'name', '<unknown>')
43
41
 
44
42
 
45
43
def read_bundle(f):
151
149
    
152
150
    # This has to be formatted for "original" date, so that the
153
151
    # revision XML entry will be reproduced faithfully.
154
 
    if offset == None:
 
152
    if offset is None:
155
153
        offset = 0
156
154
    tt = time.gmtime(t + offset)
157
155