Make print Python3 compatible

This commit is contained in:
Harry
2014-11-04 08:48:26 +00:00
parent 9cff3a755f
commit 92ea64f688
+2 -1
View File
@@ -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: