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
d5d6e3f0
Commit
d5d6e3f0
authored
Nov 08, 2014
by
stv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PEP8: W293 blank line contains whitespace
parent
d87cfa90
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
common/djangoapps/request_cache/middleware.py
+1
-1
common/djangoapps/user_api/tests/test_account_api.py
+1
-1
docs/shared/conf.py
+1
-1
lms/djangoapps/courseware/features/events.py
+1
-1
No files found.
common/djangoapps/request_cache/middleware.py
View file @
d5d6e3f0
...
...
@@ -7,7 +7,7 @@ class RequestCache(object):
@classmethod
def
get_request_cache
(
cls
):
return
_request_cache_threadlocal
def
clear_request_cache
(
self
):
_request_cache_threadlocal
.
data
=
{}
...
...
common/djangoapps/user_api/tests/test_account_api.py
View file @
d5d6e3f0
...
...
@@ -298,7 +298,7 @@ class AccountApiTest(TestCase):
if
create_inactive_account
:
# Create an account, but do not activate it
account_api
.
create_account
(
self
.
USERNAME
,
self
.
PASSWORD
,
self
.
EMAIL
)
account_api
.
request_password_change
(
self
.
EMAIL
,
self
.
ORIG_HOST
,
self
.
IS_SECURE
)
# Verify that no email messages have been sent
...
...
docs/shared/conf.py
View file @
d5d6e3f0
...
...
@@ -33,7 +33,7 @@ def add_base(paths):
"""
return
[
os
.
path
.
join
(
BASEDIR
,
x
)
for
x
in
paths
]
# If extensions (or modules to document with autodoc) are in another directory,
...
...
lms/djangoapps/courseware/features/events.py
View file @
d5d6e3f0
...
...
@@ -40,7 +40,7 @@ def reset_between_outline_scenarios(_scenario, order, outline, reasons_to_fail):
def
course_url_event_is_emitted
(
_step
,
url_regex
):
event_type
=
url_regex
.
format
(
world
.
scenario_dict
[
'COURSE'
]
.
id
)
n_events_are_emitted
(
_step
,
1
,
event_type
,
"server"
)
@step
(
r'([aA]n?|\d+) "(.*)" (server|browser) events? is emitted$'
)
def
n_events_are_emitted
(
_step
,
count
,
event_type
,
event_source
):
...
...
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