Skip to content
This repository was archived by the owner on Sep 3, 2020. It is now read-only.

Commit 3ce9010

Browse files
committed
fix
1 parent 3c21a39 commit 3ce9010

17 files changed

+39
-1
lines changed

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,22 @@ docs/_build/
5252

5353
# PyBuilder
5454
target/
55+
56+
.DS_Store
57+
# If you need to exclude files such as those generated by an IDE, use
58+
# $GIT_DIR/info/exclude or the core.excludesFile configuration variable as
59+
# described in https://git-scm.com/docs/gitignore
60+
61+
*.egg-info
62+
*.pot
63+
*.py[co]
64+
__pycache__
65+
MANIFEST
66+
dist/
67+
docs/_build/
68+
docs/locale/
69+
node_modules/
70+
tests/coverage_html/
71+
tests/.coverage
72+
build/
73+
tests/report/

db.sqlite3

8 KB
Binary file not shown.

qa/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class QuestionForm(forms.ModelForm):
66
class Meta:
77
model = Question
8-
fiels = ('question_text', 'tags')
8+
fields = ('question_text', 'tags')
99

1010
class UserForm(forms.ModelForm):
1111
password = forms.CharField(widget=forms.PasswordInput())

qa/migrations/0001_initial.pyc

52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.

qa/migrations/0004_userprofile.pyc

52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)