py3: use open() instead of file() constructor
authorPulkit Goyal <7895pulkit@gmail.com>
Sat, 17 Jun 2017 17:16:28 +0530
changeset 32898 c425b678df7c
parent 32897 799db2af824c
child 32899 3980b2e061f0
py3: use open() instead of file() constructor The file() constructor has been removed in python 3.
tests/f
--- a/tests/f	Sat Jun 17 15:29:26 2017 +0530
+++ b/tests/f	Sat Jun 17 17:16:28 2017 +0530
@@ -51,7 +51,7 @@
             if opts.type:
                 facts.append('file')
             if opts.hexdump or opts.dump or opts.md5:
-                content = file(f, 'rb').read()
+                content = open(f, 'rb').read()
         elif islink:
             if opts.type:
                 facts.append('link')