-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Publisher missing GET variables #144
Comments
@graywh are you saying that if you make the variable 4 leterd long they do get passed? Can you provide a slightly more detailed example? |
Initially noticed because |
index.py def view(req, year=None, month=None, day=None):
today = datetime.datetime.today()
if not year:
year = today.year
if not month:
month = today.month
if not day:
day = today.day
year = int(year)
month = int(month)
day = int(day)
req.content_type = 'text/html'
tmpl = psp.PSP(req, filename='_templates/view.tmpl')
tmpl.run({'year':year,
'month':month,
'day':day}) _templates/view.tmpl
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like the publisher handler is failing to pass 3-letter (and possibly shorter) GET variables to the function. I'm running 3.5.0.1 that's packaged for Debian.
The text was updated successfully, but these errors were encountered: