Skip to content

Commit 3f47882

Browse files
committed
First fix in ch1, pyc files
1 parent 3b8dc4c commit 3f47882

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

chapter_01.asciidoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -410,10 +410,10 @@ Changes to be committed:
410410
new file: functional_tests.py
411411
new file: manage.py
412412
new file: superlists/__init__.py
413-
new file: superlists/__pycache__/__init__.cpython-313.pyc
414-
new file: superlists/__pycache__/settings.cpython-313.pyc
415-
new file: superlists/__pycache__/urls.cpython-313.pyc
416-
new file: superlists/__pycache__/wsgi.cpython-313.pyc
413+
new file: superlists/__pycache__/__init__.cpython-314.pyc
414+
new file: superlists/__pycache__/settings.cpython-314.pyc
415+
new file: superlists/__pycache__/urls.cpython-314.pyc
416+
new file: superlists/__pycache__/wsgi.cpython-314.pyc
417417
new file: superlists/asgi.py
418418
new file: superlists/settings.py
419419
new file: superlists/urls.py
@@ -428,10 +428,10 @@ Let's remove them from Git and add them to '.gitignore' too:
428428
[subs="specialcharacters,macros"]
429429
----
430430
$ pass:[<strong>git rm -r --cached superlists/__pycache__</strong>]
431-
rm 'superlists/__pycache__/__init__.cpython-313.pyc'
432-
rm 'superlists/__pycache__/settings.cpython-313.pyc'
433-
rm 'superlists/__pycache__/urls.cpython-313.pyc'
434-
rm 'superlists/__pycache__/wsgi.cpython-313.pyc'
431+
rm 'superlists/__pycache__/__init__.cpython-314.pyc'
432+
rm 'superlists/__pycache__/settings.cpython-314.pyc'
433+
rm 'superlists/__pycache__/urls.cpython-314.pyc'
434+
rm 'superlists/__pycache__/wsgi.cpython-314.pyc'
435435
$ pass:[<strong>echo "__pycache__" >> .gitignore</strong>]
436436
$ pass:[<strong>echo "*.pyc" >> .gitignore</strong>]
437437
----

0 commit comments

Comments
 (0)