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