Skip to content

Commit 782dfb1

Browse files
committed
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.
1 parent 508f043 commit 782dfb1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/installation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ program you can run ``python demo.py`` instead.)
7676
1. ``python3 -m pip download roundup``
7777
2. ``tar -xzvf roundup-2.2.0.tar.gz``
7878

79-
* if you don't have a tar command, ``python3 -c 'import tarfile, sys; tarfile.open(sys.argv[1]).extractall();' roundup-2.2.0.tar.gz`` can be used.
79+
* if you don't have a tar command, ``python3 -c "import tarfile, sys; tarfile.open(sys.argv[1]).extractall();" roundup-2.2.0.tar.gz`` can be used.
8080

8181
3. ``cd roundup-2.2.0``
8282
4. ``python3 demo.py``

website/www/index.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Follow the source gratification mode with these steps (change the
184184
2. ``tar -xzvf roundup-2.3.0.tar.gz``
185185

186186
* if you don't have a tar command (e.g windows), use:
187-
``python -c 'import tarfile, sys; tarfile.open(sys.argv[1]).extractall();' roundup-2.3.0.tar.gz``
187+
``python -c "import tarfile, sys; tarfile.open(sys.argv[1]).extractall();" roundup-2.3.0.tar.gz``
188188

189189

190190
3. ``cd roundup-2.3.0``

0 commit comments

Comments
 (0)