From d20e41bdff45def640d5f835c8592b5c5f43ec35 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Tue, 26 Feb 2019 09:25:14 -0600 Subject: [PATCH] prints '='s before showing nexr --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index ff2f224..245d612 100755 --- a/main.py +++ b/main.py @@ -124,6 +124,7 @@ def show(data,rt_filter=None,_clear=False): print( config.format(**locals()),end= '\n'*2 ) + print("="*36) if __name__ == '__main__': parser = argparse.ArgumentParser(prog = 'ctabus') parser.add_argument('-l','--lucky',action='store_true',help = 'picks first result')