summaryrefslogtreecommitdiff
path: root/scrapers/at.py
diff options
context:
space:
mode:
Diffstat (limited to 'scrapers/at.py')
-rwxr-xr-xscrapers/at.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scrapers/at.py b/scrapers/at.py
index d07f8f6..bc4d874 100755
--- a/scrapers/at.py
+++ b/scrapers/at.py
@@ -45,11 +45,11 @@ for page in pages:
if info['Typ'].startswith('Vertrag -'):
continue
data = dict(
- title=info['Kurztitel'],
+ title=info['Kurztitel'].strip(),
url=info['GesamteRechtsvorschriftUrl'],
)
if 'Abkuerzung' in info:
- data['abbr'] = info['Abkuerzung']
+ data['abbr'] = info['Abkuerzung'].strip()
normen[info['Gesetzesnummer']] = data
with open('laws/at.json', 'w') as f: