Skip to content

Commit ca69338

Browse files
committed
pep8 fix
1 parent 5250489 commit ca69338

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

starcluster/cluster.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2051,7 +2051,8 @@ def validate_permission_settings(self):
20512051
if from_port != -1 or to_port != -1:
20522052
raise exception.InvalidPortRange(
20532053
from_port, to_port,
2054-
reason="for icmp protocol from_port and to_port must be -1")
2054+
reason="for icmp protocol from_port "
2055+
"and to_port must be -1")
20552056
else:
20562057
if from_port < 0 or to_port < 0:
20572058
raise exception.InvalidPortRange(

0 commit comments

Comments
 (0)