Merge pull request #28 from RightBrain-Networks/bugfix/len-expression

move > outside len
This commit is contained in:
Derek DeJonghe 2019-12-16 16:20:26 -05:00 committed by GitHub
commit 1702a9284f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ class SemVer(object):
merged_prefix = None
matches = re.findall("[\/][^\/]+[\/]", self.merged_branch)
if len(matches > 1):
if len(matches) > 1:
merged_prefix = matches[1][1:-1]
if merged_prefix: