From 3687419ab3ed47efdc7556e4819ba4a21545b615 Mon Sep 17 00:00:00 2001 From: Jake Moshenko Date: Mon, 2 Feb 2015 12:24:32 -0500 Subject: [PATCH] Change a typo to an enum --- buildman/component/buildcomponent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildman/component/buildcomponent.py b/buildman/component/buildcomponent.py index cd5c4b4e8..5080f4fda 100644 --- a/buildman/component/buildcomponent.py +++ b/buildman/component/buildcomponent.py @@ -294,7 +294,7 @@ class BuildComponent(BaseComponent): version) raise trollius.Return(False) - if self._component_status != 'waiting5': + if self._component_status != ComponentStatus.WAITING: logger.warning('Build component (token "%s") is already connected', self.expected_token) raise trollius.Return(False)