python3 incompatibility fixed

This commit is contained in:
q
2019-02-02 19:12:55 +02:00
parent 2d58da4906
commit 9de0720383

View File

@@ -407,7 +407,7 @@ class entry_collection:
if self.banner:
print("\n".join(self.banner))
for row in formatted:
print '|'.join(row)
print('|'.join(row))
def launch(self, key):
''' launch the given entry '''