Skip to content

Commit

Permalink
Simplify code
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed May 11, 2015
1 parent afbcf60 commit 1229d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion render.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def version_compare(self, first, second):
if len(first_parts) == 1:
return False
# Both are betas
return (first_parts[1] < second_parts[1])
return first_parts[1] < second_parts[1]

return False

Expand Down

0 comments on commit 1229d1d

Please sign in to comment.