45a46,47
> from __future__ import print_function
>
148c150
< print "info: %d. command and arguments: %s" % (idx + 1, process.cmd)
---
> print("info: %d. command and arguments: %s" % (idx + 1, process.cmd))
171,172c173,174
< print "Error: Cannot map %d command(s) onto %d " \
< "CPU(s)" % (len(processes), args.num_cores)
---
> print("Error: Cannot map %d command(s) onto %d CPU(s)" %
> (len(processes), args.num_cores))
228c230
< print event.getCause(), " @ ", m5.curTick()
---
> print(event.getCause(), " @ ", m5.curTick())