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
23669f5a
Commit
23669f5a
authored
Aug 04, 2012
by
ichuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add some error handling to utility scripts
parent
7fe75030
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
utility-scripts/create_groups.py
+6
-1
utility-scripts/create_user.py
+6
-1
No files found.
utility-scripts/create_groups.py
View file @
23669f5a
...
...
@@ -10,7 +10,12 @@ import os, sys, string, re
sys
.
path
.
append
(
os
.
path
.
abspath
(
'.'
))
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.dev'
from
lms.envs.dev
import
*
try
:
from
lms.envs.dev
import
*
except
Exception
as
err
:
print
"Run this script from the top-level mitx directory (mitx_all/mitx), not a subdirectory."
sys
.
exit
(
-
1
)
from
django.conf
import
settings
from
django.contrib.auth.models
import
User
,
Group
...
...
utility-scripts/create_user.py
View file @
23669f5a
...
...
@@ -14,7 +14,12 @@ import readline
sys
.
path
.
append
(
os
.
path
.
abspath
(
'.'
))
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.dev'
from
lms.envs.dev
import
*
try
:
from
lms.envs.dev
import
*
except
Exception
as
err
:
print
"Run this script from the top-level mitx directory (mitx_all/mitx), not a subdirectory."
sys
.
exit
(
-
1
)
from
student.models
import
UserProfile
,
Registration
from
external_auth.models
import
ExternalAuthMap
...
...
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