Add check if middle_text is too short (#811)

* Add check if middle_text is too short

* Use int division as suggested
This commit is contained in:
Antoine GRÉA 2019-10-30 16:16:14 +01:00 committed by Otto Winter
parent 82a30558e1
commit f22115792a
No known key found for this signature in database
GPG key ID: DB66C0BE6013F97E

View file

@ -364,7 +364,7 @@ def command_update_all(args):
def print_bar(middle_text):
middle_text = " {} ".format(middle_text)
width = len(click.unstyle(middle_text))
half_line = "=" * ((twidth - width) / 2)
half_line = "=" * ((twidth - width) // 2)
click.echo("%s%s%s" % (half_line, middle_text, half_line))
for f in files: