Skip to content

Commit dfe33cc

Browse files
ezd1000ezd1000
authored andcommitted
removed extra parentheses
1 parent 28d9a99 commit dfe33cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dbprocessing/DButils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3566,7 +3566,7 @@ def getEntry(self, table, args):
35663566
if ('get' + table + 'ID') in dir(self):
35673567
cmd = 'get' + table + 'ID'
35683568
pk = getattr(self, cmd)(args)
3569-
retval = self.session.get((getattr(self, table)),pk)
3569+
retval = self.session.get(getattr(self, table),pk)
35703570
# This code will make it consistently raise DBNoData if nothing is found,
35713571
# but codebase needs to be scrubbed for callers that expect None instead.
35723572
# else:

0 commit comments

Comments
 (0)