You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by gw...@apache.org on 2015/07/27 23:34:01 UTC

sqoop git commit: SQOOP-2436: Sqoop2: PreCommit script crashes when testing a patch that was already committed

Repository: sqoop
Updated Branches:
  refs/heads/sqoop2 7b1d52f54 -> eb76d8bb1


SQOOP-2436: Sqoop2: PreCommit script crashes when testing a patch that was already committed

(Jarek Jarcec Cecho via Gwen Shapira)


Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/eb76d8bb
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/eb76d8bb
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/eb76d8bb

Branch: refs/heads/sqoop2
Commit: eb76d8bb1c98c7e4edbfdfa941450af08d123186
Parents: 7b1d52f
Author: Gwen Shapira <cs...@gmail.com>
Authored: Mon Jul 27 14:33:11 2015 -0700
Committer: Gwen Shapira <cs...@gmail.com>
Committed: Mon Jul 27 14:33:11 2015 -0700

----------------------------------------------------------------------
 dev-support/test-patch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sqoop/blob/eb76d8bb/dev-support/test-patch.py
----------------------------------------------------------------------
diff --git a/dev-support/test-patch.py b/dev-support/test-patch.py
index e376103..16d7a1e 100755
--- a/dev-support/test-patch.py
+++ b/dev-support/test-patch.py
@@ -393,7 +393,7 @@ class Result(object):
     self._items.append(ResultItem(ResultItem.WARNING, msg, bullets))
   def fatal(self, msg, bullets=[]):
     self.overall = "-1"
-    self._items.append(ResultItem(ResultsIem.FATAL, msg, bullets))
+    self._items.append(ResultItem(ResultItem.FATAL, msg, bullets))
     self.exit_handler()
     self.exit()
   def exit(self):