Re: unbalanced parenthesis

2014-09-22 Thread Russell Keith-Magee
On Tue, Sep 23, 2014 at 10:08 AM, Mark Phillips wrote: > Russ, > > +100 > > Thanks! > > Mark aka Matt ;) > Oops! My sincere apologies for the misattribution. Yours, Russ Magee %-) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscri

Re: unbalanced parenthesis

2014-09-22 Thread Mark Phillips
2014 at 3:49 PM, ngangsia akumbo > wrote: > >> Please don't tell me to use google because i dont post here without >> google for a solution >> >> On Wednesday, September 17, 2014 4:36:40 PM UTC+1, mark wrote: >>> >>> There is no way anyone

Re: unbalanced parenthesis

2014-09-22 Thread Russell Keith-Magee
cause i dont post here without google > for a solution > > On Wednesday, September 17, 2014 4:36:40 PM UTC+1, mark wrote: >> >> There is no way anyone can help you with this limited information. >> >> 1. Please read - http://www.catb.org/esr/faqs/smart-questions.html &g

Re: unbalanced parenthesis

2014-09-22 Thread ngangsia akumbo
re is no way anyone can help you with this limited information. >> >> 1. Please read - http://www.catb.org/esr/faqs/smart-questions.html >> >> 2. Always use Google first before posting a question. Look at the error >> message - the package re threw the exception with t

Re: unbalanced parenthesis

2014-09-22 Thread ngangsia akumbo
rt-questions.html > > 2. Always use Google first before posting a question. Look at the error > message - the package re threw the exception with the message of > "unbalanced parenthesis". You are working in python. Google will hep you - > search on "python re

Re: unbalanced parenthesis

2014-09-22 Thread ngangsia akumbo
p://lmgtfy.com/?q=Python+unbalanced+parenthesis&l=1 > > -James > > On Wednesday, September 17, 2014, ngangsia akumbo > wrote: > >> i dont understand what is going on i need some help >> error at /admin/ >> >> unbalanced parenthesis >> >>

unbalanced parenthesis

2014-09-18 Thread James Schneider
You likely have a regular expression that is trying to match using groups, and a '(' or ')' are missing or added as extras without a mate. http://lmgtfy.com/?q=Python+unbalanced+parenthesis&l=1 -James On Wednesday, September 17, 2014, ngangsia akumbo > wrote: > i

unbalanced parenthesis

2014-09-17 Thread James Schneider
You likely have a regular expression that is trying to match using groups, and a '(' or ')' are missing or added as extras without a mate. http://lmgtfy.com/?q=Python+unbalanced+parenthesis&l=1 -James On Wednesday, September 17, 2014, ngangsia akumbo > wrote: > i

Re: unbalanced parenthesis

2014-09-17 Thread Mark Phillips
There is no way anyone can help you with this limited information. 1. Please read - http://www.catb.org/esr/faqs/smart-questions.html 2. Always use Google first before posting a question. Look at the error message - the package re threw the exception with the message of "unbalanced parent

unbalanced parenthesis

2014-09-17 Thread ngangsia akumbo
i dont understand what is going on i need some help error at /admin/ unbalanced parenthesis Request Method:GETRequest URL:http://localhost:8000/admin/Django Version: 1.4.3Exception Type:errorException Value: unbalanced parenthesis Exception Location:/usr/lib/python2.7/re.py in _compile, line

Re: urls.py error: unbalanced parenthesis

2009-07-19 Thread Gabriel Gunderson
On Sun, Jul 19, 2009 at 4:02 AM, Rob B (uk) wrote: >         (r'^(?P\d{4}/, 'archive_year', entry_info_dict, This named regular-expression group is missing a ")" It should be: (?P\d{4}) http://docs.djangoproject.com/en/dev/topics/http/urls/#named-groups Best, Gabe --~--~-~--~~

Re: urls.py error: unbalanced parenthesis

2009-07-19 Thread Frédéric Hébert
2009/7/19 Rob B (uk) : > > Getting a unblanced parenthesis error with this urls setup. Not sure > why. The message is pretty self-explanatory. It seems to me that you have forgotten a parenthesis after your first symbolic group named year. Frédéric > urls.py: > from django.conf.urls.defaults im

urls.py error: unbalanced parenthesis

2009-07-19 Thread Rob B (uk)
Getting a unblanced parenthesis error with this urls setup. Not sure why. urls.py: from django.conf.urls.defaults import * from coltrane.models import Entry entry_info_dict = { 'queryset': Entry.objects.all(), 'date_field': 'pub_date', } urlpatterns = patterns('django.vi

Re: unbalanced parenthesis

2009-01-05 Thread mangamonk
thank you! On Jan 5, 4:32 pm, "Alex Koshelev" wrote: > You've forgotten ")" after `(?P\d{4}` > > On Mon, Jan 5, 2009 at 7:30 PM, mangamonk wrote: > > > I'm trying to complete the practical django applications tutorial.. > > > error

Re: unbalanced parenthesis

2009-01-05 Thread Alex Koshelev
You've forgotten ")" after `(?P\d{4}` On Mon, Jan 5, 2009 at 7:30 PM, mangamonk wrote: > > I'm trying to complete the practical django applications tutorial.. > > error at /weblog/ > unbalanced parenthesis > Request Method: GET > Req

unbalanced parenthesis

2009-01-05 Thread mangamonk
I'm trying to complete the practical django applications tutorial.. error at /weblog/ unbalanced parenthesis Request Method: GET Request URL:http://127.0.0.1:8000/weblog/ Exception Type: error Exception Value: unbalanced parenthesis /home/mark/django_pro