diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-09-03 22:25:36 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-09-03 22:25:36 +0200 |
commit | 1cff256b7e014297b559a78671d47a89e5478376 (patch) | |
tree | 44ab19e2f6a7fb1dfc606b8d43f406c25a1480c0 /ishtar_common/forms.py | |
parent | 814e2d4155011dcd1dbc1c536ad06f13ffeaaf44 (diff) | |
download | Ishtar-1cff256b7e014297b559a78671d47a89e5478376.tar.bz2 Ishtar-1cff256b7e014297b559a78671d47a89e5478376.zip |
Fix SquareMeter widget (refs #1380)
* bad escaping of attributes
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r-- | ishtar_common/forms.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index bc780ef9a..e82a6e86d 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -50,7 +50,6 @@ class NamedUrlSessionFormWizard(forms.Form): self.url_name = url_name super(NamedUrlSessionFormWizard, self).__init__(self) - def rindex(self, idx): return self.url_name.rindex(idx) |