/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/transport/remote.py

merge hpss compatibility fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
            return True
134
134
        elif resp == ('no', ):
135
135
            return False
136
 
        elif resp == ('error', "Generic bzr smart protocol error: "
137
 
                               "bad request 'Transport.is_readonly'"):
 
136
        elif (resp == ('error', "Generic bzr smart protocol error: "
 
137
                                "bad request 'Transport.is_readonly'") or
 
138
              resp == ('error', "Generic bzr smart protocol error: "
 
139
                                "bad request u'Transport.is_readonly'")):
138
140
            # XXX: nasty hack: servers before 0.16 don't have a
139
141
            # 'Transport.is_readonly' verb, so we do what clients before 0.16
140
142
            # did: assume False.