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
7679fda1
Commit
7679fda1
authored
Dec 18, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debugging print statements
parent
81e065bd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
5 deletions
+0
-5
common/lib/xmodule/xmodule/course_module.py
+0
-1
lms/djangoapps/courseware/grades.py
+0
-2
lms/djangoapps/courseware/module_render.py
+0
-1
lms/xmodule_namespace.py
+0
-1
No files found.
common/lib/xmodule/xmodule/course_module.py
View file @
7679fda1
...
...
@@ -401,7 +401,6 @@ class CourseDescriptor(SequenceDescriptor):
@property
def
start_date_text
(
self
):
print
self
.
advertised_start
,
self
.
start
return
time
.
strftime
(
"
%
b
%
d,
%
Y"
,
self
.
advertised_start
or
self
.
start
)
@property
...
...
lms/djangoapps/courseware/grades.py
View file @
7679fda1
...
...
@@ -36,8 +36,6 @@ def yield_dynamic_descriptor_descendents(descriptor, module_creator):
def
get_dynamic_descriptor_children
(
descriptor
):
if
descriptor
.
has_dynamic_children
():
module
=
module_creator
(
descriptor
)
if
module
is
None
:
print
"FOO"
,
descriptor
child_locations
=
module
.
get_children_locations
()
return
[
descriptor
.
system
.
load_item
(
child_location
)
for
child_location
in
child_locations
]
else
:
...
...
lms/djangoapps/courseware/module_render.py
View file @
7679fda1
...
...
@@ -92,7 +92,6 @@ def toc_for_course(user, request, course, active_chapter, active_section):
chapters
=
list
()
for
chapter
in
course_module
.
get_display_items
():
print
chapter
,
chapter
.
_model_data
,
chapter
.
_model_data
.
get
(
'hide_from_toc'
),
chapter
.
lms
.
hide_from_toc
if
chapter
.
lms
.
hide_from_toc
:
continue
...
...
lms/xmodule_namespace.py
View file @
7679fda1
...
...
@@ -4,7 +4,6 @@ from xmodule.fields import Date
class
StringyBoolean
(
Boolean
):
def
from_json
(
self
,
value
):
print
"StringyBoolean "
,
value
if
isinstance
(
value
,
basestring
):
return
value
.
lower
()
==
'true'
return
value
...
...
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