Browse Source

[2853] Remove unused catch argument name

The compiler should have caught this, but it didn't.
Mukund Sivaraman 12 years ago
parent
commit
bd3f52daf5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/python/isc/datasrc/configurableclientlist_python.cc

+ 1 - 1
src/lib/python/isc/datasrc/configurableclientlist_python.cc

@@ -214,7 +214,7 @@ ConfigurableClientList_getStatus(PyObject* po_self, PyObject*) {
             try {
                 segment_type = Py_BuildValue(
                     "s", status[i].getSegmentType().c_str());
-            } catch (const isc::InvalidOperation& e) {
+            } catch (const isc::InvalidOperation&) {
                 Py_INCREF(Py_None);
                 segment_type = Py_None;
             }