From 6288cfd9df6d8eec72ab0858a7da64c31e346d6c Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sat, 8 Apr 2017 11:58:29 +0200 Subject: [PATCH] remove 2016 from coinify messages --- src/shop/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shop/views.py b/src/shop/views.py index 4a4470cc..7d1a5ad8 100644 --- a/src/shop/views.py +++ b/src/shop/views.py @@ -551,9 +551,9 @@ class CoinifyRedirectView(LoginRequiredMixin, EnsureUserOwnsOrderMixin, EnsureUn response = coinifyapi.invoice_create( float(order.total), 'DKK', - plugin_name='BornHack 2016 webshop', + plugin_name='BornHack webshop', plugin_version='1.0', - description='BornHack 2016 order id #%s' % order.id, + description='BornHack order id #%s' % order.id, callback_url=order.get_coinify_callback_url(request), return_url=order.get_coinify_thanks_url(request), cancel_url=order.get_cancel_url(request),