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
84c38b4e
Commit
84c38b4e
authored
Jul 12, 2013
by
ichuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix two typos in export scripts
parent
84f531af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cms/djangoapps/contentstore/management/commands/export.py
+1
-1
cms/djangoapps/contentstore/management/commands/export_all_courses.py
+1
-1
No files found.
cms/djangoapps/contentstore/management/commands/export.py
View file @
84c38b4e
...
...
@@ -18,7 +18,7 @@ class Command(BaseCommand):
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
!=
2
:
raise
CommandError
(
"
im
port requires two arguments: <course location> <output path>"
)
raise
CommandError
(
"
ex
port requires two arguments: <course location> <output path>"
)
course_id
=
args
[
0
]
output_path
=
args
[
1
]
...
...
cms/djangoapps/contentstore/management/commands/export_all_courses.py
View file @
84c38b4e
...
...
@@ -18,7 +18,7 @@ class Command(BaseCommand):
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
!=
1
:
raise
CommandError
(
"
im
port requires one argument: <output path>"
)
raise
CommandError
(
"
ex
port requires one argument: <output path>"
)
output_path
=
args
[
0
]
...
...
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