Created
November 7, 2013 13:11
-
-
Save justinvdm/7354366 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/go/vumitools/app_worker.py b/go/vumitools/app_worker.py | |
| index 9c70fda..db42a75 100644 | |
| --- a/go/vumitools/app_worker.py | |
| +++ b/go/vumitools/app_worker.py | |
| @@ -41,7 +41,7 @@ class GoApplicationConfigData(object): | |
| def has_key(self, field_name): | |
| if self.conv.config and field_name in self.conv.config: | |
| return True | |
| - return self.config_dict.has_key(field_name) | |
| + return field_name in self.config_dict | |
| class GoWorkerConfigMixin(object): |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment