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 08148c5830
commit 07286d1d76

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: