Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 5236:0a20e1965f4b
Pylint checks bark about:
raise NotImplemented
looks like it should be
raise NotImplementedError
the former is a constant and the latter is an exception.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 15 Apr 2017 17:44:40 -0400 |
| parents | 462b0f76fce8 |
| children | 198b6e810c67 |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Sat Apr 15 17:39:19 2017 -0400 +++ b/roundup/backends/rdbms_common.py Sat Apr 15 17:44:40 2017 -0400 @@ -209,7 +209,7 @@ Must call self.load_dbschema() """ - raise NotImplemented + raise NotImplementedError def sql(self, sql, args=None, cursor=None): """ Execute the sql with the optional args.
