tests: Replace file() with open() to work with python3
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
c37ef330d0
commit
e50c58e585
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ class FstLauncher:
|
|||
pid = -1
|
||||
try:
|
||||
for i in range(3):
|
||||
pf = file(pidfile, 'r')
|
||||
pf = open(pidfile, 'r')
|
||||
pidtxt = pf.read().strip()
|
||||
self.logger.debug("kill_pid: %s: '%s'" % (pidfile, pidtxt))
|
||||
pf.close()
|
||||
|
|
Loading…
Reference in a new issue