diff --git a/cms/djangoapps/contentstore/management/commands/import.py b/cms/djangoapps/contentstore/management/commands/import.py index 520e36f4d2..e0d58b32f0 100644 --- a/cms/djangoapps/contentstore/management/commands/import.py +++ b/cms/djangoapps/contentstore/management/commands/import.py @@ -18,7 +18,7 @@ class Command(BaseCommand): make_option('--nostatic', action='store_true', help='Skip import of static content'), - ) + ) def handle(self, *args, **options): "Execute the command" diff --git a/cms/djangoapps/contentstore/tests/test_import_nostatic.py b/cms/djangoapps/contentstore/tests/test_import_nostatic.py index fc68975ebb..24b00dbbf3 100644 --- a/cms/djangoapps/contentstore/tests/test_import_nostatic.py +++ b/cms/djangoapps/contentstore/tests/test_import_nostatic.py @@ -1,6 +1,6 @@ #pylint: disable=E1101 ''' -Tests for importing with no static +Tests for importing with no static ''' from django.test.client import Client