Skip to content

Commit b1e9134

Browse files
committed
Update metadataCollectionsKeysMatrix.py
1 parent 640636a commit b1e9134

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metadataCollectionsKeysMatrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
collections = requests.get(baseURL+'/rest/communities/'+str(communityID)+'/collections', headers=header, cookies=cookies, verify=verify).json()
9393
for j in range (0, len (collections)):
9494
collectionID = collections[j]['uuid']
95-
if collectionID == '45794375-6640-4efe-848e-082e60bae375':
96-
print 'Levy Collection - skipped'
95+
if collectionID not in skippedCollections:
96+
print 'Collection skipped'
9797
else:
9898
collectionItemList = []
9999
collectionName = collections[j]['name'].encode('utf-8')

0 commit comments

Comments
 (0)