X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..HEAD:/src/funding/widgets.py diff --git a/src/funding/widgets.py b/src/funding/widgets.py index f66cde341..e73a9ed33 100644 --- a/src/funding/widgets.py +++ b/src/funding/widgets.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from decimal import Decimal, DecimalException from django import forms @@ -12,7 +11,7 @@ class PerksAmountWidget(forms.Textarea): def perks_input_name(name): return "_%s_perk" % name - def render(self, name, value, attrs=None): + def render(self, name, value, attrs=None, renderer=None): try: value = Decimal(value) except DecimalException: