From 02bbb30efea4980c9d133947cbbf69fb599071ad Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Mon, 25 Feb 2019 11:09:54 +0100 Subject: Support python2/python3 --- example/jitter/arm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'example/jitter/arm.py') diff --git a/example/jitter/arm.py b/example/jitter/arm.py index e475abeb..86772874 100755 --- a/example/jitter/arm.py +++ b/example/jitter/arm.py @@ -1,5 +1,6 @@ #! /usr/bin/env python2 #-*- coding:utf-8 -*- +from __future__ import print_function import logging from pdb import pm @@ -22,7 +23,7 @@ else: logging.basicConfig(level=logging.WARNING) if options.verbose is True: - print sb.jitter.vm + print(sb.jitter.vm) # Run the code sb.run() -- cgit 1.4.1