From: Quentin Smith Date: Sun, 20 May 2018 23:17:38 +0000 (-0400) Subject: Fix typo X-Git-Tag: 0.1.51~8 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/8505866dfb3448f425ed0358f0b6620daf8481b6 Fix typo --- diff --git a/code/main.py b/code/main.py index 4237d18..005f4b0 100755 --- a/code/main.py +++ b/code/main.py @@ -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')) diff --git a/debian/changelog b/debian/changelog index d75d82c..74b1f1a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-web (0.1.48) unstable; urgency=low + + * Fix typo + + -- Quentin Smith Sun, 20 May 2018 19:17:50 -0400 + invirt-web (0.1.47) unstable; urgency=low * Show "other" network parameters if set.