|
@@ -12,7 +12,6 @@ class Command(BaseCommand):
|
|
|
|
|
|
def add_arguments(self, parser):
|
|
|
parser.add_argument('reports', nargs='+', help="Report(s) to run")
|
|
|
-
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
|
@@ -22,7 +21,7 @@ class Command(BaseCommand):
|
|
|
|
|
|
for module_name, report_list in reports:
|
|
|
for report in report_list:
|
|
|
- if module_name in options['reports'] or report.full_namel in options['reports']:
|
|
|
+ if module_name in options['reports'] or report.full_name in options['reports']:
|
|
|
|
|
|
|
|
|
self.stdout.write(
|