##// END OF EJS Templates
check-config: specify the mode 'rb' to open the file...
Pulkit Goyal -
r35937:143d7b27 default
parent child Browse files
Show More
@@ -49,7 +49,7 b' def main(args):'
49 confsect = ''
49 confsect = ''
50 carryover = ''
50 carryover = ''
51 linenum = 0
51 linenum = 0
52 for l in open(f):
52 for l in open(f, 'rb'):
53 linenum += 1
53 linenum += 1
54
54
55 # check topic-like bits
55 # check topic-like bits
General Comments 0
You need to be logged in to leave comments. Login now