##// END OF EJS Templates
py3: replace file() with open() in test-mq-missingfiles.t...
Pulkit Goyal -
r36039:b9119950 default
parent child Browse files
Show More
@@ -9,7 +9,7 b' future qrefresh.'
9 > args = sys.argv[2:]
9 > args = sys.argv[2:]
10 > assert (len(args) % 2) == 0
10 > assert (len(args) % 2) == 0
11 >
11 >
12 > f = file(path, 'wb')
12 > f = open(path, 'wb')
13 > for i in xrange(len(args)/2):
13 > for i in xrange(len(args)/2):
14 > count, s = args[2*i:2*i+2]
14 > count, s = args[2*i:2*i+2]
15 > count = int(count)
15 > count = int(count)
General Comments 0
You need to be logged in to leave comments. Login now