From 7a372688238bedf2e167a56652b3b49b3e259c1d Mon Sep 17 00:00:00 2001 From: Zhang Qiang Date: Tue, 17 Jul 2012 12:28:13 +0800 Subject: [PATCH] fix typo issue --- gitbuildsys/cmd_build.py | 10 +++++----- gitbuildsys/cmd_export.py | 8 ++++---- gitbuildsys/cmd_remotebuild.py | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/gitbuildsys/cmd_build.py b/gitbuildsys/cmd_build.py index 6b511a4..9f40c0a 100644 --- a/gitbuildsys/cmd_build.py +++ b/gitbuildsys/cmd_build.py @@ -251,19 +251,19 @@ def do(opts, args): uncommitted_files.extend(status[stat]) if not is_clean and not opts.include_all: if untracked_files: - msger.warning('the following untracked files would be not be '\ + msger.warning('the following untracked files would NOT be '\ 'included:\n %s' % '\n '.join(untracked_files)) if uncommitted_files: - msger.warning('the following uncommited changes would not be '\ + msger.warning('the following uncommitted changes would NOT be '\ 'included:\n %s' % '\n '.join(uncommitted_files)) msger.warning('you can specify \'--include-all\' option to '\ - 'include these uncommited and untracked files.') + 'include these uncommitted and untracked files.') if opts.include_all: if untracked_files: msger.info('the following untracked files would be included' \ ':\n %s' % '\n '.join(untracked_files)) if uncommitted_files: - msger.info('the following uncommited changes would be included'\ + msger.info('the following uncommitted changes would be included'\ ':\n %s' % '\n '.join(uncommitted_files)) except GitRepositoryError, err: msger.error(str(err)) @@ -454,7 +454,7 @@ def do(opts, args): msger.error('rpmbuild fails') else: msger.info('The buildroot was: %s' % build_root) - msger.info('Binaries RPM packges can be found here:\n %s/%s' % \ + msger.info('Binaries RPM packages can be found here:\n %s/%s' % \ (build_root, 'home/abuild/rpmbuild/RPMS/')) msger.info('Done') except KeyboardInterrupt: diff --git a/gitbuildsys/cmd_export.py b/gitbuildsys/cmd_export.py index 9808356..8764520 100644 --- a/gitbuildsys/cmd_export.py +++ b/gitbuildsys/cmd_export.py @@ -75,19 +75,19 @@ def do(opts, args): uncommitted_files.extend(status[stat]) if not is_clean and not opts.include_all: if untracked_files: - msger.warning('the following untracked files would be not be '\ + msger.warning('the following untracked files would NOT be '\ 'included:\n %s' % '\n '.join(untracked_files)) if uncommitted_files: - msger.warning('the following uncommited changes would not be '\ + msger.warning('the following uncommitted changes would NOT be '\ 'included:\n %s' % '\n '.join(uncommitted_files)) msger.warning('you can specify \'--include-all\' option to '\ - 'include these uncommited and untracked files.') + 'include these uncommitted and untracked files.') if opts.include_all: if untracked_files: msger.info('the following untracked files would be included' \ ':\n %s' % '\n '.join(untracked_files)) if uncommitted_files: - msger.info('the following uncommited changes would be included'\ + msger.info('the following uncommitted changes would be included'\ ':\n %s' % '\n '.join(uncommitted_files)) except GitRepositoryError, err: msger.error(str(err)) diff --git a/gitbuildsys/cmd_remotebuild.py b/gitbuildsys/cmd_remotebuild.py index fa9bd90..97ffd29 100644 --- a/gitbuildsys/cmd_remotebuild.py +++ b/gitbuildsys/cmd_remotebuild.py @@ -94,19 +94,19 @@ def do(opts, args): if not is_clean and not opts.include_all and not \ (opts.buildlog or opts.status): if untracked_files: - msger.warning('the following untracked files would be not be '\ + msger.warning('the following untracked files would NOT be '\ 'included:\n %s' % '\n '.join(untracked_files)) if uncommitted_files: - msger.warning('the following uncommited changes would not be '\ + msger.warning('the following uncommitted changes would NOT be '\ 'included:\n %s' % '\n '.join(uncommitted_files)) msger.warning('you can specify \'--include-all\' option to '\ - 'include these uncommited and untracked files.') + 'include these uncommitted and untracked files.') if opts.include_all and not (opts.buildlog or opts.status): if untracked_files: msger.info('the following untracked files would be included' \ ':\n %s' % '\n '.join(untracked_files)) if uncommitted_files: - msger.info('the following uncommited changes would be included'\ + msger.info('the following uncommitted changes would be included'\ ':\n %s' % '\n '.join(uncommitted_files)) except repository.GitRepositoryError, err: msger.error(str(err)) -- 2.7.4