Skip to content

Commit

Permalink
Merge pull request #3677 from 3drepo/ISSUE_3676
Browse files Browse the repository at this point in the history
ISSUE #3676 - fix test in getCustomLogins.py
  • Loading branch information
Charence committed Nov 1, 2022
2 parents f401057 + 174e8be commit 8a18082
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .azure/Docker/src/getCustomLogins.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
# }

import sys, json
from os.path import exists

if not exists(sys.argv[1]):
print("")
sys.exit(0)

output=[]
customLogins=json.load(open(sys.argv[1],"r"))

Expand Down

0 comments on commit 8a18082

Please sign in to comment.