aboutsummaryrefslogtreecommitdiff
path: root/wa/framework/resource.py
diff options
context:
space:
mode:
authorMarc Bonnici <marc.bonnici@arm.com>2017-03-22 16:05:49 +0000
committerMarc Bonnici <marc.bonnici@arm.com>2017-03-22 16:10:06 +0000
commit861db1cf38f37fb8cfbdf2d90a4fda6b4c3cebf0 (patch)
tree56ec4d98acb7b523b2df827a15740d1e7f587c20 /wa/framework/resource.py
parent07362a5d05e9ab5d5e3145a60ce4d24ecaa78cba (diff)
Resource: Removed stray ':'
Diffstat (limited to 'wa/framework/resource.py')
-rw-r--r--wa/framework/resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wa/framework/resource.py b/wa/framework/resource.py
index 1167b14c..2ce9de7f 100644
--- a/wa/framework/resource.py
+++ b/wa/framework/resource.py
@@ -155,7 +155,7 @@ class ApkFile(Resource):
version_matches = apk_version_matches(path, self.version)
if self.variant is not None:
name_matches = file_name_matches(path, self.variant)
- return name_matches and version_matches:
+ return name_matches and version_matches
def __str__(self):
text = '<{}\'s apk'.format(self.owner)