Re: Error when I use python manage.py makemigrations polls

2018-11-02 Thread Dewansh Rawat
Instead of polls.app.appconfig try writing polls -- 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 django-users+unsubscr...@googlegroups.com. To post to this group

Re: Error when I use python manage.py makemigrations polls

2018-11-01 Thread amit pant
am stuck on writing your first code part 2, I > have followed every step but keeps getting this error when I use python > manage.py makemigrations polls, below is my code attached, please help. > > -- > You received this message because you are subscribed to the Google Groups &g

Re: Error when I use python manage.py makemigrations polls

2018-11-01 Thread ALLAN NJOROGE
Thanks let me do that On Thu, Nov 1, 2018 at 6:58 PM Dewansh Rawat wrote: > Hey there! > Can you please host you're code on GitHub or gist? It becomes quite easier > to debug then. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To uns

Error when I use python manage.py makemigrations polls

2018-11-01 Thread Dewansh Rawat
PS, also try this out, if it works out for you... https://stackoverflow.com/questions/17931380/attributeerror-tuple-object-has-no-attribute-startswith -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

Error when I use python manage.py makemigrations polls

2018-11-01 Thread Dewansh Rawat
Hey there! Can you please host you're code on GitHub or gist? It becomes quite easier to debug then. -- 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 django-user

Error when I use python manage.py makemigrations polls

2018-11-01 Thread Dewansh Rawat
PS, also try this link, if it works out for you... https://stackoverflow.com/questions/17931380/attributeerror-tuple-object-has-no-attribute-startswith -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rece

Re: Error when I use python manage.py makemigrations polls

2018-11-01 Thread M Hashmi
> have followed every step but keeps getting this error when I use python > manage.py makemigrations polls, below is my code attached, please help. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py makemigrations polls I get the console error.

2018-04-30 Thread Avitab Ayan Sarmah
Yes I found the error George, I mistakenly typed polss in settings. Now the code is running fine On Tue 1 May, 2018, 1:03 AM George Lubaretsi, wrote: > Looks like you have a typo somewhere. > > Exception says that it can't find a module `polss` while it should be > `polls`. Check your settings a

Re: I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py makemigrations polls I get the console error.

2018-04-30 Thread George Lubaretsi
Looks like you have a typo somewhere. Exception says that it can't find a module `polss` while it should be `polls`. Check your settings and imports On Mon, Apr 30, 2018 at 11:29 PM Avitab Ayan Sarmah wrote: > The code I am using for the models is: > > from django.db import models > > class Que

I am following the official Django documentation and trying to make the polls app. But when I run the command python manage.py makemigrations polls I get the console error.

2018-04-30 Thread Avitab Ayan Sarmah
The code I am using for the models is: from django.db import models class Question(models.Model): question_text = models.CharField(max_length=200) pub_date = models.DateTimeField('date published') class Choice(models.Model): question = models.ForeignKey(Question) choice_text = mo

Re: Tutorial 2 - Ver2.0 - python manage.py makemigrations polls - Error message when running

2018-02-04 Thread Daniel Hepper
e: https://docs.djangoproject.com/en/2.0/intro/tutorial02/ > > Running this command: python manage.py makemigrations polls > > I get this output - way over my head. Any ideas? > (I have tried changing the settings.py INSTALLED_APPS to just 'polls' as > suggested in some

Tutorial 2 - Ver2.0 - python manage.py makemigrations polls - Error message when running

2018-02-04 Thread CanuckT
Hi, new to programming and trying the tutorial out for Django. Using this guide: https://docs.djangoproject.com/en/2.0/intro/tutorial02/ Running this command: python manage.py makemigrations polls I get this output - way over my head. Any ideas? (I have tried changing the settings.py

Re: python manage.py makemigrations polls

2015-07-14 Thread Auj Snow
Thanks for the help. I figured it out. I wasn't in the right directory! On Monday, July 13, 2015 at 10:56:52 PM UTC-4, Auj Snow wrote: > > When I try to run "python manage.py makemigrations polls" in my terminal, > I get an error "No changes detected in app 'po

Re: python manage.py makemigrations polls

2015-07-13 Thread Néstor
try "python manage.py migrate" On Mon, Jul 13, 2015 at 4:27 PM, Auj Snow wrote: > When I try to run "python manage.py makemigrations polls" in my terminal, > I get an error "No changes detected in app 'polls' " > > I have saved the 'polls

python manage.py makemigrations polls

2015-07-13 Thread Auj Snow
When I try to run "python manage.py makemigrations polls" in my terminal, I get an error "No changes detected in app 'polls' " I have saved the 'polls' in the INSTALLED_APPS but I just don't understand how to fix this. Any help would be apprecia