Skip to content

Commit 976e4b4

Browse files
committed
Database class close method was not raising NotImplementedError
All other stubbed methods raise NotImplementedErrors. The close() method did not raise the error. Now it does.
1 parent 12ae738 commit 976e4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/hyperdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ def close(self):
11031103
This method must be called at the end of processing.
11041104
11051105
"""
1106-
1106+
raise NotImplementedError
11071107

11081108
def iter_roles(roles):
11091109
''' handle the text processing of turning the roles list

0 commit comments

Comments
 (0)