Brandon Taylor wrote: > My db record's pub_date field value is: 2008-09-17 16:39:52 > > When I step through the debugger for archive year, and the following > code is executed: > > lookup_kwargs = {'%s__year' % date_field: year} > > 'year' is being passed in from the keyword argument ?P<year> from the > URL, but once it hits this function, year = u'' > > I'm using 1.0 Final, MySQL 5. Help! > > > > On Oct 7, 6:01 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote: > >> Hi everyone, >> >> Here is my code: >> >> entry_info_dict = { >> 'queryset' : Entry.live.all(), >> 'date_field' : 'pub_date', >> 'allow_future' : True >> >> } >> >> urlpatterns = patterns('django.views.generic.date_based', >> url(r'^blog/(?P<year>)\d{4}/$', 'archive_year', entry_info_dict, >> name='archive_year'), >> ) >> >> That pattern should be
r'^blog/(?P<year>\d{4})/$ As it is you are passing the null string as your "year" view argument: >>> int('') Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: invalid literal for int() with base 10: '' regards Steve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---