/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/request.py

Report full exception name rather than just 'error' where possible via smart protocol

Show diffs side-by-side

added added

removed removed

Lines of Context:
451
451
        return ('MemoryError',)
452
452
    # Unserialisable error.  Log it, and return a generic error
453
453
    trace.log_exception_quietly()
454
 
    return ('error', str(err))
 
454
    return (trace._qualified_exception_name(err.__class__, True), str(err))
455
455
 
456
456
 
457
457
class HelloRequest(SmartServerRequest):