Skip to content

Commit

Permalink
delete "or less". (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
afeena authored Jan 30, 2018
1 parent 8b0aeae commit db7c35b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versions_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ def check_compatibility(self, tanner_version):
min_version = self.version_mapper[self.version][0]
max_version = self.version_mapper[self.version][1]
if not (StrictVersion(min_version) <= StrictVersion(tanner_version) <= StrictVersion(max_version)):
print("Wrong tanner version: {}. Compatible versions: {}-{} or less".format(tanner_version, min_version, max_version))
print("Wrong tanner version: {}. Compatible versions are {} - {}".format(tanner_version, min_version, max_version))
exit(1)

0 comments on commit db7c35b

Please sign in to comment.