mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
9 lines
246 B
Python
Executable File
9 lines
246 B
Python
Executable File
from django.core.management.base import NoArgsCommand
|
|
|
|
|
|
class Command(NoArgsCommand):
|
|
def handle_noargs(self, **options):
|
|
try:
|
|
pass
|
|
except Exception, ex:
|
|
print "Debug exception: %s" % ex.message |