Browse Source

[2062] Call parent's __init__() in SysInfoLinux

Mukund Sivaraman 13 years ago
parent
commit
c7017fc5e4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/lib/python/isc/sysinfo/sysinfo.py

+ 2 - 0
src/lib/python/isc/sysinfo/sysinfo.py

@@ -132,6 +132,8 @@ class SysInfoLinux(SysInfo):
     See the base class documentation for more information.
     """
     def __init__(self):
+        super().__init__()
+
         self._num_processors = os.sysconf('SC_NPROCESSORS_CONF')
         self._endianness = sys.byteorder