Skip to content

Commit

Permalink
- fix bug in python DB code
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpanderson committed Apr 21, 2022
1 parent 6b13c8c commit b99132c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/Boinc/db_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def iterate(self, **kwargs):
return

def _create_objects_from_sql_results(self, results, kwargs):
return [ self._create_object_from_sql_result for result in results ]
return [ self._create_object_from_sql_result(result) for result in results ]

def _create_object_from_sql_result(self, result):
id = result['id']
Expand Down

0 comments on commit b99132c

Please sign in to comment.