Clean up comments in create_usersettings, and fix copyright in escalate_tickets.

This commit is contained in:
Ross Poulton 2011-04-19 23:02:33 +00:00
parent b108e5147c
commit 090685b6d9
2 changed files with 12 additions and 6 deletions

View File

@ -1,6 +1,12 @@
# -*- coding: utf-8 -*- #!/usr/bin/python
"""
django-helpdesk - A Django powered ticket tracker for small enterprise.
"Management command to add create UserSettings" See LICENSE for details.
create_usersettings.py - Easy way to create helpdesk-specific settings for
users who don't yet have them.
"""
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
@ -13,7 +19,9 @@ class Command(BaseCommand):
"create_usersettings command" "create_usersettings command"
help = _('Check for user without django-helpdesk UserSettings ' help = _('Check for user without django-helpdesk UserSettings '
'and create if missing') 'and create settings if required. Uses '
'settings.DEFAULT_USER_SETTINGS which can be overridden to '
'suit your situation.')
def handle(self, *args, **options): def handle(self, *args, **options):
"handle command line" "handle command line"
@ -23,5 +31,3 @@ class Command(BaseCommand):
except UserSettings.DoesNotExist: except UserSettings.DoesNotExist:
s = UserSettings(user=u, settings=DEFAULT_USER_SETTINGS) s = UserSettings(user=u, settings=DEFAULT_USER_SETTINGS)
s.save() s.save()
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4

View File

@ -1,6 +1,6 @@
#!/usr/bin/python #!/usr/bin/python
""" """
Jutda Helpdesk - A Django powered ticket tracker for small enterprise. django-helpdesk - A Django powered ticket tracker for small enterprise.
(c) Copyright 2008 Jutda. All Rights Reserved. See LICENSE for details. (c) Copyright 2008 Jutda. All Rights Reserved. See LICENSE for details.