10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-24 21:21:52 +02:00

isSameArticle fix

This commit is contained in:
Mickaël Véril 2021-03-27 15:51:01 +01:00 committed by Anthony Scemama
parent 56b4ff0435
commit dd43e12626

View File

@ -80,7 +80,7 @@ class exSet(object):
if (self.name==otherSet.name and self.index==otherSet.index):
return True
else:
return self.getDOI() == self.getDOI()
return self.getDOI() == otherSet.getDOI()
class dataFileBase(object):
def __init__(self):