1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Resource: Removed stray ':'

This commit is contained in:
Marc Bonnici 2017-03-22 16:05:49 +00:00
parent 07362a5d05
commit 861db1cf38

View File

@ -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)