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

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
449
449
        if not self.parse_request(): # An error code has been sent, just exit
450
450
            return
451
451
        mname = 'do_' + self.command
452
 
        if not hasattr(self, mname):
 
452
        if getattr(self, mname, None) is None:
453
453
            self.send_error(501, "Unsupported method (%r)" % self.command)
454
454
            return
455
455
        method = getattr(self, mname)