tests/test-fix.t
changeset 48293 7a4d187479b6
parent 48178 f12a19d03d2c
child 48346 e6aecc37bfbf
--- a/tests/test-fix.t	Fri Oct 29 14:40:46 2021 +0200
+++ b/tests/test-fix.t	Fri Oct 22 09:45:35 2021 +0200
@@ -1785,7 +1785,7 @@
   $ cat >> $LOGGER <<EOF
   > # Appends the input file's name to the log file.
   > import sys
-  > with open('$LOGFILE', 'a') as f:
+  > with open(r'$LOGFILE', 'a') as f:
   >     f.write(sys.argv[1] + '\n')
   > sys.stdout.write(sys.stdin.read())
   > EOF