Update obsolete file() calls in bitmessagemain
This commit is contained in:
parent
242056c1fb
commit
d872a23ae3
|
@ -424,9 +424,9 @@ class Main(object):
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
if not sys.platform.startswith('win'):
|
if not sys.platform.startswith('win'):
|
||||||
si = file(os.devnull, 'r')
|
si = open(os.devnull, 'r')
|
||||||
so = file(os.devnull, 'a+')
|
so = open(os.devnull, 'a+')
|
||||||
se = file(os.devnull, 'a+', 0)
|
se = open(os.devnull, 'a+', 0)
|
||||||
os.dup2(si.fileno(), sys.stdin.fileno())
|
os.dup2(si.fileno(), sys.stdin.fileno())
|
||||||
os.dup2(so.fileno(), sys.stdout.fileno())
|
os.dup2(so.fileno(), sys.stdout.fileno())
|
||||||
os.dup2(se.fileno(), sys.stderr.fileno())
|
os.dup2(se.fileno(), sys.stderr.fileno())
|
||||||
|
|
Reference in New Issue
Block a user