From 4c8c35f298981a16ef4edb8b4abf6afc656fbf25 Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 28 Jul 2016 16:12:25 +0200 Subject: [PATCH] change VAT on eu market to 25% --- api/models/market.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/models/market.py b/api/models/market.py index f1a1c3b..8cf7696 100644 --- a/api/models/market.py +++ b/api/models/market.py @@ -86,7 +86,7 @@ _markets = [ Market('Spain', 'es_ES', 'EUR', 1.25, 'ESP'), Market('France', 'fr_FR', 'EUR', 1.25, 'FRA'), Market('Poland', 'pl_PL', 'PLN', 1.25, 'POL'), - Market('International', 'en_EU', 'EUR', 1, None), + Market('International', 'en_EU', 'EUR', 1.25, None), ]