From 4f7268c3e2df4074f7ce10b5077d2c34a9a09a59 Mon Sep 17 00:00:00 2001 From: Martinez Date: Fri, 21 Oct 2016 12:06:33 +0200 Subject: [PATCH] - fix over.text.lexical_join crashing on generators - over.app strack tracer ui tweak --- over/app.py | 2 ++ over/text.py | 1 + 2 files changed, 3 insertions(+) diff --git a/over/app.py b/over/app.py index 46cc603..199af79 100644 --- a/over/app.py +++ b/over/app.py @@ -789,3 +789,5 @@ class Main: format = "%s - " %((i - 3) * " ") self.print(line, format=format, end="\n") + + self.print("---------------------------------------------", format="", end="\n") diff --git a/over/text.py b/over/text.py index ddadaad..255f6b4 100644 --- a/over/text.py +++ b/over/text.py @@ -32,6 +32,7 @@ def lexical_join(words, oxford=False): "this" """ + words = list(words) l = len(words) if l == 0: