diff --git a/llvm/utils/git-svn/git-llvm b/llvm/utils/git-svn/git-llvm --- a/llvm/utils/git-svn/git-llvm +++ b/llvm/utils/git-svn/git-llvm @@ -420,8 +420,8 @@ rev_range = args.rev_range dry_run = args.dry_run revs = get_revs_to_push(rev_range) - log('Pushing %d %s commit%s:\n%s' % - (len(revs), + log('%sPushing %d %s commit%s:\n%s' % + ('[DryRun] ' if dry_run else '', len(revs), 'split-repo (%s)' % split_repo_path if split_repo_path else 'monorepo', 's' if len(revs) != 1 else '', @@ -601,7 +601,7 @@ '--dry-run', dest='dry_run', action='store_true', - help='Do everything other than perform a revert. Prints the git ' + help='Do everything other than perform a revert. Orints the git ' 'revert command it would have run.') parser_revert.set_defaults(func=cmd_revert)