Remove print we accidentally added.

This commit is contained in:
Florian Bruhin 2014-07-30 18:22:13 +02:00
parent 77ca7db46a
commit 36c4e8940e

View File

@ -657,7 +657,6 @@ class Application(QApplication):
def interrupt_forcefully(self, signum, frame):
"""Interrupt forcefully on the second SIGINT/SIGTERM request."""
log.destroy.info("Forceful quit requested, goodbye cruel world!")
print("Forceful quit requested, goodbye cruel world!")
self.exit(128 + signum)
@pyqtSlot()