Mercurial > p > roundup > code
diff website/www/index.txt @ 7610:cc4f2a1d271c
docs: replace ' with " in windows tarfile examples
The examples for using python to unpack a tarfile on windows used '
not ". I thought they were interchangable, but they are not. Only "
works like I expect.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 17 Aug 2023 13:54:01 -0400 |
| parents | 7301b776a94a |
| children | e3f5edcfbbac |
line wrap: on
line diff
--- a/website/www/index.txt Thu Aug 17 13:36:43 2023 -0400 +++ b/website/www/index.txt Thu Aug 17 13:54:01 2023 -0400 @@ -184,7 +184,7 @@ 2. ``tar -xzvf roundup-2.3.0.tar.gz`` * if you don't have a tar command (e.g windows), use: - ``python -c 'import tarfile, sys; tarfile.open(sys.argv[1]).extractall();' roundup-2.3.0.tar.gz`` + ``python -c "import tarfile, sys; tarfile.open(sys.argv[1]).extractall();" roundup-2.3.0.tar.gz`` 3. ``cd roundup-2.3.0``
