Skip to content

Commit 16108dd

Browse files
committed
[FIX] Root tag case problem on SIAMM validation
1 parent 2f5b773 commit 16108dd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

PyFePA/siamm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _siam_serialize(value):
109109

110110
validate(value)
111111

112-
intercettazioni = etree.Element('INTERCETTAZIONI')
112+
intercettazioni = etree.Element('Intercettazioni')
113113
(etree.SubElement(intercettazioni, 'ID')).text = str(value['id']) if 'id' in value else '1'
114114
(etree.SubElement(intercettazioni, 'BENEFICIARIO')).text = unicode(value['beneficiario'].strip('IT'))
115115
(etree.SubElement(intercettazioni, 'TIPOPAGAMENTO')).text = value['tipopagamento']

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
description = 'Python object of italian FatturaPA, serialize, deserialize and verify',
2727
author = 'Luigi Di Naro',
2828
author_email = 'Luigi.DiNaro@ktec.it',
29-
home_page = 'http://www.ktec.it/fatturapa',
3029
url = 'https://github.com/ktecsrl/PyFePA',
3130
download_url = 'https://github.com/ktecsrl/PyFePA/tarball/1.0.1',
3231
keywords = ['FatturaPA', 'financial', 'utils'],

0 commit comments

Comments
 (0)