5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-10 22:13:07 +08:00

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

(Jarek Jarcec Cecho via Gwen Shapira)
This commit is contained in:
Gwen Shapira 2015-07-27 14:33:11 -07:00
parent 7b1d52f544
commit eb76d8bb1c

View File

@ -393,7 +393,7 @@ def warning(self, msg, bullets=[]):
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):