This commit is contained in:
Dimitri John Ledkov 2014-12-18 20:52:51 +00:00
parent 194d23e878
commit 57ea2cc410

View File

@ -15,6 +15,8 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
from __future__ import print_function
import sys
from ubuntutools.question import Question, YesNoQuestion
@ -43,5 +45,5 @@ def ask_for_manual_fixing():
def user_abort():
"""Print abort and quit the program."""
print "User abort."
print("User abort.")
sys.exit(2)