Browse Source

[2672] Fix duplicate use of message ID

This is not allowed by our coding style. Use the correct message ID
instead (which was previously unused).
Mukund Sivaraman 12 years ago
parent
commit
3fa52fbaed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/stats/stats_httpd.py.in

+ 1 - 1
src/bin/stats/stats_httpd.py.in

@@ -413,7 +413,7 @@ class StatsHttpd:
         try:
             self.open_httpd()
         except HttpServerError as err:
-            logger.error(STATSHTTPD_SERVER_ERROR, err)
+            logger.error(STATSHTTPD_SERVER_INIT_ERROR, err)
             # restore old config
             self.load_config(old_config)
             self.open_httpd()