~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-06 03:43:00 UTC
  • Revision ID: mbp@sourcefrog.net-20050406034300-2a30b34fd323212ac80712fc
better message on error

Show diffs side-by-side

added added

removed removed

Lines of Context:
997
997
            for h in e.args[1]:
998
998
                log_error('  ' + h + '\n')
999
999
        traceback.print_exc(None, bzrlib.trace._tracefile)
1000
 
        log_error('see ~/.bzr.log for more information\n')
 
1000
        log_error('(see $HOME/.bzr.log for debug information)\n')
1001
1001
        return 1
1002
1002
    except Exception, e:
1003
1003
        log_error('bzr: exception: %s\n' % e)
1004
 
        log_error('    see .bzr.log for details\n')
 
1004
        log_error('(see $HOME/.bzr.log for debug information)\n')
1005
1005
        traceback.print_exc(None, bzrlib.trace._tracefile)
1006
 
        traceback.print_exc(None, sys.stderr)
 
1006
        ## traceback.print_exc(None, sys.stderr)
1007
1007
        return 1
1008
1008
 
1009
1009
    # TODO: Maybe nicer handling of IOError?