diff options
author | prathamesh | 2014-07-24 11:59:56 +0530 |
---|---|---|
committer | prathamesh | 2014-07-24 11:59:56 +0530 |
commit | f1d28170cf96ae6e4b0a5fb39f38e0aaa5709b6a (patch) | |
tree | 43f9e2b4288a108f02e6999ff15de6db94676aaf | |
parent | 24676bc8b02f94b6f700ccf25a49015134bfd0fb (diff) | |
parent | 0e6c82690650c61049ae8641a2801f0fcbc9c25c (diff) | |
download | online_test-f1d28170cf96ae6e4b0a5fb39f38e0aaa5709b6a.tar.gz online_test-f1d28170cf96ae6e4b0a5fb39f38e0aaa5709b6a.tar.bz2 online_test-f1d28170cf96ae6e4b0a5fb39f38e0aaa5709b6a.zip |
Merge branch 'initial_fixtures' into reusable_app
-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 |