diff options
author | prathamesh | 2014-07-24 12:00:44 +0530 |
---|---|---|
committer | prathamesh | 2014-07-24 12:00:44 +0530 |
commit | 66d03bdc00de43fc3b7598bf14fd1fe8e3aa41f1 (patch) | |
tree | 42bc6ba2dddbbd2a65ef08d890e88ce37944621d /testapp/exam | |
parent | cd0c3057f19a1234b94b6a0f2273d5ad47dd95ad (diff) | |
parent | 0e6c82690650c61049ae8641a2801f0fcbc9c25c (diff) | |
download | online_test-66d03bdc00de43fc3b7598bf14fd1fe8e3aa41f1.tar.gz online_test-66d03bdc00de43fc3b7598bf14fd1fe8e3aa41f1.tar.bz2 online_test-66d03bdc00de43fc3b7598bf14fd1fe8e3aa41f1.zip |
Merge branch 'initial_fixtures' into packaging_app
Diffstat (limited to 'testapp/exam')
-rw-r--r-- | testapp/exam/management/commands/add_group.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/exam/management/commands/add_group.py b/testapp/exam/management/commands/add_group.py index e6ac888..76cc655 100644 --- a/testapp/exam/management/commands/add_group.py +++ b/testapp/exam/management/commands/add_group.py @@ -3,8 +3,8 @@ the objects in the exam app. We can modify this command to add more groups by providing arguments. Arguments like group-name, app-name can be passed. - ''' + # django imports from django.core.management.base import BaseCommand, CommandError from django.contrib.auth.models import Group, Permission |