Changeset 13647 in genesis
- Timestamp:
- Nov 14, 2016, 4:20:20 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/gformat.py
r13645 r13647 1434 1434 for iface_key in get_interface_keys(datadump): 1435 1435 iface_name = iface_key.replace('_','-') 1436 (ip, cidr) = datadump[iface_key]['ip'].split('/') 1436 if 'ip' in datadump[iface_key]: 1437 (ip, cidr) = datadump[iface_key]['ip'].split('/') 1437 1438 try: 1438 1439 (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
Note:
See TracChangeset
for help on using the changeset viewer.