8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-02 12:14:05 +00:00

Suppression de vérifications inutiles.

This commit is contained in:
LEVY-FALK Hugo 2017-10-26 11:29:44 +02:00 committed by root
parent e3bd4e7ce3
commit 1c8a3a87c0

View file

@ -445,10 +445,8 @@ def create_ports(request, switch_id):
messages.error(request, "Ce switch ne peut avoir autant de ports.")
return redirect("/topologie/switch/" + str(switch.id))
if begin < s_begin:
b = range(begin, s_begin)
if end > s_end:
e = range(s_end+1, end+1)
b = range(begin, s_begin)
e = range(s_end+1, end+1)
for i in itertools.chain(b,e):
p = Port()
p.switch = switch