From: Mitchell E Berger Date: Tue, 22 May 2018 23:41:57 +0000 (-0400) Subject: Style nits for Quentin. X-Git-Tag: 0.0.8~2 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dhcp.git/commitdiff_plain/fd213377362505a504e1d100e497949b84d5ead7?ds=sidebyside Style nits for Quentin. --- diff --git a/invirt-dhcpserver b/invirt-dhcpserver index 970bc5c..e049f15 100755 --- a/invirt-dhcpserver +++ b/invirt-dhcpserver @@ -20,7 +20,7 @@ from invirt import database from invirt.config import structs as config dhcp_options = {'domain_name_server': ','.join(config.dhcp.dns), - 'ip_address_lease_time': config.dhcp.leasetime if config.dhcp.has_key('leasetime') else 60*60*24} + 'ip_address_lease_time': config.dhcp.get('leasetime', 60*60*24)} class DhcpBackend: def __init__(self, queue): @@ -153,7 +153,7 @@ class DhcpBackend: s.syslog(s.LOG_ERR, "Interface is %s" % (intf)) # Don't perform "other" actions if the machine isn't running other_action = n.other_action if n.other_action and intf else '' - if other_action == 'renumber' or other_action == 'renumber_dhcp': + if other_action in ('renumber', 'renumber_dhcp'): (n.ip, n.netmask, n.gateway, n.other_ip, n.other_netmask, n.other_gateway) = ( n.other_ip, n.other_netmask, n.other_gateway, n.ip,