Skip to content

Commit 34a04ab

Browse files
ezd1000jtniehof
ezd1000
authored andcommitted
removed extra parentheses
1 parent 8002ce0 commit 34a04ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbprocessing/DButils.py

+1-1
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)