diff --git a/cms/djangoapps/contentstore/management/commands/import.py b/cms/djangoapps/contentstore/management/commands/import.py index a7f95ea3c0..e24111dbb7 100644 --- a/cms/djangoapps/contentstore/management/commands/import.py +++ b/cms/djangoapps/contentstore/management/commands/import.py @@ -25,8 +25,8 @@ class Command(BaseCommand): module_store = XMLModuleStore(org, course, data_dir, 'xmodule.raw_module.RawDescriptor') for module in module_store.modules.itervalues(): - keystore().create_item(module.url) + keystore().create_item(module.location) if 'data' in module.definition: - keystore().update_item(module.url, module.definition['data']) + keystore().update_item(module.location, module.definition['data']) if 'children' in module.definition: - keystore().update_children(module.url, module.definition['children']) + keystore().update_children(module.location, module.definition['children']) diff --git a/cms/templates/widgets/navigation.html b/cms/templates/widgets/navigation.html index 38b1cd9d94..bed0d1b4f8 100644 --- a/cms/templates/widgets/navigation.html +++ b/cms/templates/widgets/navigation.html @@ -38,7 +38,7 @@ % for week in weeks:
  • -

    ${week.name}

    +

    ${week.name}