##// END OF EJS Templates
py3: replace file() with open() in test-convert-p4-filetypes.t...
Pulkit Goyal -
r36030:42542adb default
parent child Browse files
Show More
@@ -52,7 +52,7 b' not testing these'
52 > p4 add -t $T file_$T2
52 > p4 add -t $T file_$T2
53 > ;;
53 > ;;
54 > binary*)
54 > binary*)
55 > $PYTHON -c "file('file_$T2', 'wb').write('this is $T')"
55 > $PYTHON -c "open('file_$T2', 'wb').write(b'this is $T')"
56 > p4 add -t $T file_$T2
56 > p4 add -t $T file_$T2
57 > ;;
57 > ;;
58 > *)
58 > *)
General Comments 0
You need to be logged in to leave comments. Login now