Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
bee58106
Commit
bee58106
authored
Feb 26, 2015
by
Nimisha Asthagiri
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7129 from edx/django-upgrade/spelling-errors
minor fixes found from the django-upgrade work.
parents
6a54b1d6
052dd52a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
common/djangoapps/student/tests/test_password_history.py
+1
-1
lms/djangoapps/dashboard/management/commands/git_add_course.py
+1
-1
No files found.
common/djangoapps/student/tests/test_password_history.py
View file @
bee58106
...
...
@@ -89,7 +89,7 @@ class TestPasswordHistory(TestCase):
self
.
assertTrue
(
PasswordHistory
.
is_allowable_password_reuse
(
staff
,
"test"
))
@override_settings
(
PASSWORD_HASHERS
=
(
'django.contrib.auth.hashers.PBKDF2PasswordHasher'
))
@override_settings
(
PASSWORD_HASHERS
=
(
'django.contrib.auth.hashers.PBKDF2PasswordHasher'
,
))
@patch.dict
(
"django.conf.settings.ADVANCED_SECURITY_CONFIG"
,
{
'MIN_DIFFERENT_STAFF_PASSWORDS_BEFORE_REUSE'
:
2
})
@patch.dict
(
"django.conf.settings.ADVANCED_SECURITY_CONFIG"
,
{
'MIN_DIFFERENT_STUDENT_PASSWORDS_BEFORE_REUSE'
:
1
})
def
test_pbkdf2_sha256_password_reuse
(
self
):
...
...
lms/djangoapps/dashboard/management/commands/git_add_course.py
View file @
bee58106
...
...
@@ -41,7 +41,7 @@ class Command(BaseCommand):
if
len
(
args
)
>
3
:
raise
CommandError
(
'Expected no more than three '
'arguments; rec
ie
ved {0}'
.
format
(
len
(
args
)))
'arguments; rec
ei
ved {0}'
.
format
(
len
(
args
)))
rdir_arg
=
None
branch
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment