I\'ve seen this error posted several times, but I can\'t find anyone using Django 2.0 and having the problem.
The problem cropped up when I tried to nest one app inside
Try to change your app_name='' in learning_logs/urls.py. (Create if there is not any.)
app_name=''
learning_logs/urls.py
In the first learning_logs app you forgot s in the end (e.g. app_name = 'learning_logs')
learning_logs
s
app_name = 'learning_logs'