summaryrefslogtreecommitdiffstats
path: root/util/locale_database/localetools.py
diff options
context:
space:
mode:
Diffstat (limited to 'util/locale_database/localetools.py')
-rw-r--r--util/locale_database/localetools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/locale_database/localetools.py b/util/locale_database/localetools.py
index 29153366b3..82691666aa 100644
--- a/util/locale_database/localetools.py
+++ b/util/locale_database/localetools.py
@@ -40,8 +40,8 @@ Classes:
import os
import tempfile
-class Error (StandardError):
- __upinit = StandardError.__init__
+class Error (Exception):
+ __upinit = Exception.__init__
def __init__(self, msg, *args):
self.__upinit(msg, *args)
self.message = msg