mirror of
https://github.com/kennethreitz-archive/procs.git
synced 2026-06-05 23:30:18 +00:00
Make print Python3 compatible
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user