diff options
-rw-r--r-- | src/lib/Bcfg2/Server/Reports/Updater/Routines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/Updater/Routines.py b/src/lib/Bcfg2/Server/Reports/Updater/Routines.py index b500fd0a6..edb21c321 100644 --- a/src/lib/Bcfg2/Server/Reports/Updater/Routines.py +++ b/src/lib/Bcfg2/Server/Reports/Updater/Routines.py @@ -57,7 +57,7 @@ def _rebuild_sqlite_table(model): cursor.execute('DROP TABLE %s;' % tmp_tbl_name) except DatabaseError: logger.error("Failed to rebuild sqlite table %s" % table_name, exc_info=1) - raise UpdaterError + raise UpdaterRoutineException class UpdaterRoutineException(Exception): |