From 4eb5778cd11d034d657f29fc0bbb4db9ad5ae3ed Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 29 Nov 2018 18:30:18 +0100 Subject: [PATCH] Use actual library version for product_version --- fints/client.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fints/client.py b/fints/client.py index 374907c..c30019b 100644 --- a/fints/client.py +++ b/fints/client.py @@ -9,6 +9,7 @@ from enum import Enum import bleach from sepaxml import SepaTransfer +from . import version from .connection import FinTSHTTPSConnection from .dialog import FinTSDialog from .exceptions import * @@ -166,8 +167,8 @@ class FinTS3Client: self.upd_version = 0 self.upa = None self.upd = SegmentSequence() - self.product_name = 'pyfints' - self.product_version = '0.2' + self.product_name = 'python-fints' + self.product_version = version self.response_callbacks = [] self._standing_dialog = None -- 2.47.2