removed reference to nonexistent flag

This commit is contained in:
Vishvananda Ishaya
2010-06-01 08:21:31 -07:00
parent f04c6ab2d0
commit 9b11ac06cb
+1 -1
View File
@@ -197,7 +197,7 @@ class DHCPNetwork(BridgedNetwork):
logging.debug("Initing DHCPNetwork object...")
self.dhcp_listen_address = self.network[1]
self.dhcp_range_start = self.network[3]
self.dhcp_range_end = self.network[-(1 + FLAGS.cnt_vpn_clients)]
self.dhcp_range_end = self.network[-1]
try:
os.makedirs(FLAGS.networks_path)
except Exception, err: