Mercurial > hg
changeset 36013:42542adb8944
py3: replace file() with open() in test-convert-p4-filetypes.t
file() is not present in Python 3. While I was here, I added b'' prefix to make
sure we write things correctly in Python 3.
Differential Revision: https://phab.mercurial-scm.org/D2112
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sun, 11 Feb 2018 16:56:47 +0530 |
parents | 233fb0b91a35 |
children | d7238d125aa2 |
files | tests/test-convert-p4-filetypes.t |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-convert-p4-filetypes.t Sun Feb 11 17:30:42 2018 +0530 +++ b/tests/test-convert-p4-filetypes.t Sun Feb 11 16:56:47 2018 +0530 @@ -52,7 +52,7 @@ > p4 add -t $T file_$T2 > ;; > binary*) - > $PYTHON -c "file('file_$T2', 'wb').write('this is $T')" + > $PYTHON -c "open('file_$T2', 'wb').write(b'this is $T')" > p4 add -t $T file_$T2 > ;; > *)