/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/smart/protocol.py

  • Committer: John Arbash Meinel
  • Date: 2007-08-08 14:34:56 UTC
  • mfrom: (2685 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2688.
  • Revision ID: john@arbash-meinel.com-20070808143456-wa00r4p8r146p689
[merge] bzr.dev 2685

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from bzrlib import debug
25
25
from bzrlib import errors
26
26
from bzrlib.smart import request
27
 
from bzrlib.trace import mutter
 
27
from bzrlib.trace import log_exception_quietly, mutter
28
28
 
29
29
 
30
30
# Protocol version strings.  These are sent as prefixes of bzr requests and
110
110
                raise
111
111
            except Exception, exception:
112
112
                # everything else: pass to client, flush, and quit
 
113
                log_exception_quietly()
113
114
                self._send_response(request.FailedSmartServerResponse(
114
115
                    ('error', str(exception))))
115
116
                return