Skip to content
This repository was archived by the owner on Apr 26, 2018. It is now read-only.

Commit 066c129

Browse files
authored
Merge pull request #2 from gnjack/patch-1
Fix orange light is always lit
2 parents 12a0595 + 728dace commit 066c129

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ def parseActivity(root):
4747
for child in root:
4848
if child.attrib['name'] not in ['Call Centre CI Build', 'Call Centre Installer Build'] :
4949
continue
50-
activity = child.attrib['activity']
51-
if activity == 'Building':
50+
if child.attrib['activity'] == 'Building':
5251
activity = BUILD_ACTIVITY_BUILDING
5352
break
5453
return activity

0 commit comments

Comments
 (0)