Merge pull request #21 from RickCarlino/master

Limit length of longer usernames
This commit is contained in:
Jake Funke 2018-11-24 20:54:18 -08:00 committed by GitHub
當前提交 0b2e9177dc
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 4AEE18F83AFDEB23

查看文件

@ -308,7 +308,7 @@ class CursedMenu(object):
return plant_table
def format_garden_entry(self, entry):
return "{:14} - {:>16} - {:>8}p - {}".format(*entry)
return "{:14.14} - {:>16} - {:>8}p - {}".format(*entry)
def sort_garden_table(self, table, column, ascending):
""" Sort table in place by a specified column """