From: Mukund Sivaraman Date: Thu, 7 Feb 2013 04:41:37 +0000 (+0530) Subject: [2672] Fix duplicate use of message ID X-Git-Tag: bind10-1.0.0-rc-release~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fa52fbaed9589ecad689ccf105bbf7365d26d62;p=thirdparty%2Fkea.git [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). --- diff --git a/src/bin/stats/stats_httpd.py.in b/src/bin/stats/stats_httpd.py.in index dea48e1374..367f56e6c1 100755 --- a/src/bin/stats/stats_httpd.py.in +++ b/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()