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

  • Committer: Ian Clatworthy
  • Date: 2007-09-03 13:17:52 UTC
  • mto: (2819.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2820.
  • Revision ID: ian.clatworthy@internode.on.net-20070903131752-va6227ax1vj8b9pb
Make commit less verbose by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
2303
2303
                raise errors.BzrCommandError("empty commit message specified")
2304
2304
            return my_message
2305
2305
 
2306
 
        if verbose or not is_quiet():
2307
 
            reporter = ReportCommitToLog()
2308
 
        else:
2309
 
            reporter = NullCommitReporter()
2310
 
 
2311
2306
        try:
2312
2307
            tree.commit(message_callback=get_message,
2313
2308
                        specific_files=selected_list,
2314
2309
                        allow_pointless=unchanged, strict=strict, local=local,
2315
 
                        reporter=reporter, revprops=properties,
 
2310
                        reporter=None, verbose=verbose, revprops=properties,
2316
2311
                        author=author)
2317
2312
        except PointlessCommit:
2318
2313
            # FIXME: This should really happen before the file is read in;