Skip to content

Commit

Permalink
Fixed network bug
Browse files Browse the repository at this point in the history
  • Loading branch information
drakylar committed Jan 7, 2022
1 parent 93f9460 commit 4b13add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/ui/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ def networks_graph_json(project_id, current_project, current_user):
'name': '{}/{}'.format(current_network['ip'], current_network['mask'])
}
})
current_network['ip_obj'] = ipaddress.ip_network('{}/{}'.format(current_network['ip'], current_network['mask']))
current_network['ip_obj'] = ipaddress.ip_network('{}/{}'.format(current_network['ip'], current_network['mask']),False)

j.append({
'group': 'nodes',
Expand Down

0 comments on commit 4b13add

Please sign in to comment.