Re: Proposal: Add additional password validators (auth/password_validation.py)

2019-05-27 Thread Adam Johnson
No worries, I wouldn't say I beat you, this is just a discussion :) Looking forward to your future contributions On Wed, 22 May 2019 at 02:10, Brad Solomon wrote: > Thanks Adam--the thoroughness of your response makes me more, rather than > less, interested in contributing further to Django. An

Re: ERROR: The included URLConf 'website.urls' does not appear to have patterns in it. If u see valid patterns in the file then there is issue of Circular import.

2019-05-27 Thread Dimple Mathew
and also in import for include change it to from django.conf.urls import url,include On Monday, May 27, 2019 at 8:17:47 PM UTC+5:30, Madhur Kabra wrote: > > I am getting the url conf error, I have attached the relevant files. > Thanks for the assistance > -- You received this message because

Re: ERROR: The included URLConf 'website.urls' does not appear to have patterns in it. If u see valid patterns in the file then there is issue of Circular import.

2019-05-27 Thread rajan khadka
in this from django.urls import URLPattern, url from . import views urlpatterns = [ url('', views.index, name=index), ] can u replace with this from django.urls import path from . import views urlpatterns = [ path('', views.index, name=index), ] On Mon, May 27, 2019 at 8:32 PM Madhu

Re: ERROR: The included URLConf 'website.urls' does not appear to have patterns in it. If u see valid patterns in the file then there is issue of Circular import.

2019-05-27 Thread Dimple Mathew
Hey update the code to this: urlpatterns = [ url('^$', views.index, name=index), ] this will tell the start and end of url. On Monday, May 27, 2019 at 8:17:47 PM UTC+5:30, Madhur Kabra wrote: > > I am getting the url conf error, I have attached the relevant files. > Thanks for the assistanc

Re: ERROR: The included URLConf 'website.urls' does not appear to have patterns in it. If u see valid patterns in the file then there is issue of Circular import.

2019-05-27 Thread Adam Johnson
Hi! I think you've found the wrong mailing list for this post. This mailing list is for the development of Django itself, not for support using Django. This means the discussions of bugs and features in Django itself, rather than in your code using it. People on this list are unlikely to answer yo

ERROR: The included URLConf 'website.urls' does not appear to have patterns in it. If u see valid patterns in the file then there is issue of Circular import.

2019-05-27 Thread Madhur Kabra
I am getting the url conf error, I have attached the relevant files. Thanks for the assistance -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from

Re: Request to reconsider ticket #27910: using an Enum class in model Field choices

2019-05-27 Thread Shai Berger
Hi all, A bit of an issue came about in the PR: If you define an enum class which inherits `str`, there's an ambiguity when asking for its string representation (that is, explicit conversion to `str`) -- between it simply being a `str`, and Enum's `__str__()` which returns `Type.NAME'. The ambig

Re: Fellow Reports - May 2019

2019-05-27 Thread Mariusz Felisiak
Week ending May 26, 2019. *Triaged:* https://code.djangoproject.com/ticket/30490 - migrations unique_index on (app, name). (wontfix) https://code.djangoproject.com/ticket/30491 - Document changing primary key behavior in "How Django knows to UPDATE vs. INSERT" section. (accepted) https://code.dj