diff options
| author | rr- | 2016-04-03 19:00:47 +0200 |
|---|---|---|
| committer | rr- | 2016-04-03 19:17:54 +0200 |
| commit | 2578a297bfc95b165401436110d0d810df4ed4b2 (patch) | |
| tree | 34d223082698c6a4369d94b38e72e6072abda4f5 /server/szurubooru/errors.py | |
| parent | 9ce67b64ed42c9946a51cdd78e25342e9ee92841 (diff) | |
server/general: improve pylint score
+ incorporate some in-house rules - no more useless doc strings...
Diffstat (limited to 'server/szurubooru/errors.py')
| -rw-r--r-- | server/szurubooru/errors.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/szurubooru/errors.py b/server/szurubooru/errors.py index fa42ab2..90b8c65 100644 --- a/server/szurubooru/errors.py +++ b/server/szurubooru/errors.py @@ -1,4 +1,5 @@ -''' Exports custom errors. ''' +class ConfigError(RuntimeError): + ''' A problem with config.ini file. ''' class AuthError(RuntimeError): ''' Generic authentication error ''' |