Fix typo
authorQuentin Smith <quentin@mit.edu>
Sun, 20 May 2018 23:17:38 +0000 (19:17 -0400)
committerQuentin Smith <quentin@mit.edu>
Sun, 20 May 2018 23:17:55 +0000 (19:17 -0400)
code/main.py
debian/changelog

index 4237d18..005f4b0 100755 (executable)
@@ -497,7 +497,7 @@ def getNicInfo(data_dict, machine):
         data_dict['nic%s_hostname' % i] = getHostname(machine.nics[i])
         data_dict['nic%s_mac' % i] = machine.nics[i].mac_addr
         data_dict['nic%s_ip' % i] = machine.nics[i].ip
-        data_dict['nic%s_netmask' % i] = machine.nics[i].ip
+        data_dict['nic%s_netmask' % i] = machine.nics[i].netmask
         data_dict['nic%s_gateway' % i] = machine.nics[i].gateway
         if machine.nics[i].other_ip:
             nic_fields.append(('nic%s_other' % i, 'NIC %s Other Address'))
index d75d82c..74b1f1a 100644 (file)
@@ -1,3 +1,9 @@
+invirt-web (0.1.48) unstable; urgency=low
+
+  * Fix typo
+
+ -- Quentin Smith <quentin@mit.edu>  Sun, 20 May 2018 19:17:50 -0400
+
 invirt-web (0.1.47) unstable; urgency=low
 
   * Show "other" network parameters if set.