From 92ea64f688ea2e0021d4ffb50adc0e4274612e6c Mon Sep 17 00:00:00 2001 From: Harry Date: Tue, 4 Nov 2014 08:48:26 +0000 Subject: [PATCH] Make print Python3 compatible --- procs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/procs.py b/procs.py index 4292f15..0899171 100644 --- a/procs.py +++ b/procs.py @@ -1,3 +1,4 @@ +from __future__ import print_function import os import subprocess @@ -49,7 +50,7 @@ class Chain(object): return p def link(self, x, y): - print 'Linking {} to {}'.format(x, y) + print('Linking {} to {}'.format(x, y)) def start(self, wait=False): for process in self.processes: