fix typo issue
authorZhang Qiang <qiang.z.zhang@intel.com>
Tue, 17 Jul 2012 04:28:13 +0000 (12:28 +0800)
committerZhang Qiang <qiang.z.zhang@intel.com>
Tue, 17 Jul 2012 04:28:13 +0000 (12:28 +0800)
gitbuildsys/cmd_build.py
gitbuildsys/cmd_export.py
gitbuildsys/cmd_remotebuild.py

index 6b511a4..9f40c0a 100644 (file)
@@ -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:
index 9808356..8764520 100644 (file)
@@ -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))
index fa9bd90..97ffd29 100644 (file)
@@ -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))