Skip to content

Commit

Permalink
Merge pull request #15 from mkuhlmann/fix-detail-collapsed
Browse files Browse the repository at this point in the history
Fix detail page being collaped when on same network
  • Loading branch information
kennell authored Feb 15, 2018
2 parents 5c57707 + 8044371 commit 25d5fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schiene/schiene.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_connections(html):
price = None

data = {
'details': columns[0].a.get('href'),
'details': columns[0].a.get('href').replace('!details=opened!', '!details=opened!detailsVerbund=opened!'),
'departure': columns[0].a.contents[0].string,
'arrival': columns[0].a.contents[2].string,
'transfers': int(columns[2].contents[0]),
Expand Down

0 comments on commit 25d5fb7

Please sign in to comment.