diff options
author | 2022-06-24 14:40:17 +0200 | |
---|---|---|
committer | 2022-06-24 14:40:17 +0200 | |
commit | d2313bddccfbde49d8b97b78c3626d039493908c (patch) | |
tree | 46f0a214f2911d99a08bab1bcc79ae2428876734 /.github/prtester.py | |
parent | b1ae7603bfbd3daf1768b571f2d45c50f798bb95 (diff) | |
download | rss-bridge-d2313bddccfbde49d8b97b78c3626d039493908c.tar.gz rss-bridge-d2313bddccfbde49d8b97b78c3626d039493908c.tar.zst rss-bridge-d2313bddccfbde49d8b97b78c3626d039493908c.zip |
feat: print which bridge is being processed (#2860)
Diffstat (limited to '.github/prtester.py')
-rw-r--r-- | .github/prtester.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/prtester.py b/.github/prtester.py index bfd2c89f..37e8e2d2 100644 --- a/.github/prtester.py +++ b/.github/prtester.py @@ -16,6 +16,7 @@ def testBridges(bridges,status): if bridge.get('data-ref'): # Some div entries are empty, this ignores those bridgeid = bridge.get('id') bridgeid = bridgeid.split('-')[1] # this extracts a readable bridge name from the bridge metadata + print(bridgeid + "\n") bridgestring = '/?action=display&bridge=' + bridgeid + '&format=Html' forms = bridge.find_all("form") formid = 1 |