mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-10-31 23:22:49 +00:00
Merge branch 'fix_firewall_synth' into 'dev'
FIx la synthaxe correcte pour iptables See merge request federez/re2o!239
This commit is contained in:
commit
ddce1892b7
1 changed files with 1 additions and 1 deletions
|
@ -1838,7 +1838,7 @@ class OuverturePort(RevMixin, AclMixin, models.Model):
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
if self.begin == self.end:
|
if self.begin == self.end:
|
||||||
return str(self.begin)
|
return str(self.begin)
|
||||||
return '-'.join([str(self.begin), str(self.end)])
|
return ':'.join([str(self.begin), str(self.end)])
|
||||||
|
|
||||||
def show_port(self):
|
def show_port(self):
|
||||||
"""Formatage plus joli, alias pour str"""
|
"""Formatage plus joli, alias pour str"""
|
||||||
|
|
Loading…
Reference in a new issue