feat: print which bridge is being processed (#2860)

This commit is contained in:
Dag 2022-06-24 14:40:17 +02:00 committed by GitHub
parent b1ae7603bf
commit d2313bddcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

1
.github/prtester.py vendored
View file

@ -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