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
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
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
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
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
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
> 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
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
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
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
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
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
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
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
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
15 matches
Mail list logo