~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: John Arbash Meinel
  • Date: 2008-09-26 23:35:02 UTC
  • mto: This revision was merged to the branch mainline in revision 3747.
  • Revision ID: john@arbash-meinel.com-20080926233502-0x6htcqzyn2lncj0
Restore the 'if memory in debug.debug_flags' check for commands.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
795
795
            ret = apply_coveraged(opt_coverage_dir, run, *run_argv)
796
796
        else:
797
797
            ret = run(*run_argv)
798
 
        trace.debug_memory('Process status after command:', short=False)
 
798
        if 'memory' in debug.debug_flags:
 
799
            trace.debug_memory('Process status after command:', short=False)
799
800
        return ret or 0
800
801
    finally:
801
802
        # reset, in case we may do other commands later within the same process