V0.6 test api #1781
|
@ -84,7 +84,8 @@ class TestProcessProto(unittest.TestCase):
|
||||||
def _get_readline(cls, pfile):
|
def _get_readline(cls, pfile):
|
||||||
pfile = os.path.join(cls.home, pfile)
|
pfile = os.path.join(cls.home, pfile)
|
||||||
try:
|
try:
|
||||||
return open(pfile, 'rb').readline().strip()
|
with open(pfile, 'rb') as p:
|
||||||
|
return p.readline().strip()
|
||||||
except (OSError, IOError):
|
except (OSError, IOError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user