getsentry/raven-python

View on GitHub
examples/django_110/app/management/commands/example.py

Summary

Maintainability
A
0 mins
Test Coverage
from django.core.management.base import BaseCommand


class Command(BaseCommand):
    help = 'Examples'

    def handle(self, *args, **options):
        raise Exception('oops')