Skip to content

Commit d265503

Browse files
committed
fixed parenthesis location in if-statement
1 parent aa9ef9e commit d265503

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cronOutage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
if item['downCount'] >= 3 and item['downCount'] % 3 == 0:
1414
count += 1
1515
downSites.append(item)
16-
if len(downSites > 0):
16+
if len(downSites) > 0:
1717
oe.outage(downSites, count)

0 commit comments

Comments
 (0)