I am trying to *fork* one of the apps of django-oscar so that I can customize it. I followed all the instructions on django-oscar docs <https://django-oscar.readthedocs.io/en/latest/topics/customisation.html#fork-oscar-app>
All the files are created when I run python manage.py oscar_fork_app checkout apps/ Then I add this to my *settings*. INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps.checkout']) But then I get the following error: *ModuleNotFoundError: No module named 'apps\\checkout'* I don't know why it adds the *double backslash* in there. I have tried setting it like this as well: INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps\checkout']) Same error. I have also forked the app in different directories but still the same error. Any suggestions? Django version *1.10.7* -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b23071c8-fe55-41d6-928a-979617c4990b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

