Skip to content

Commit

Permalink
fix accpet-charset form attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed May 28, 2013
1 parent 5cd2b03 commit 0fa14bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pform/templates/form.jinja2
Expand Up @@ -4,7 +4,7 @@
<form action="{{context.action|safe}}"
name="{{context.name}}" id="{{context.id}}" class="{{context.klass}}"
method="{{context.method}}" enctype="{{context.enctype}}"
accept="{{context.accept}}" acceptCharset="{{context.accept_charset}}"
accept="{{context.accept}}" accept-charset="{{context.accept_charset}}"
{%if context.autcomplete%}autocomplete="{{context.autocomplete}}"{%endif%}>

{% for fieldset in context.widgets.fieldsets %}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
import sys
from setuptools import setup, find_packages

version = '0.6.2'
version = '0.6.3dev'

install_requires = ['setuptools',
'pyramid >= 1.4',
Expand Down

0 comments on commit 0fa14bd

Please sign in to comment.