set width of "hlines" to 79
authorFlorian Schweikert <signanz@logic.at>
Fri, 30 Sep 2011 17:53:52 +0000 (20:53 +0300)
committerFlorian Schweikert <signanz@logic.at>
Fri, 30 Sep 2011 17:53:52 +0000 (20:53 +0300)
scotty

diff --git a/scotty b/scotty
index cc242fc..b5b8a2c 100755 (executable)
--- a/scotty
+++ b/scotty
@@ -82,7 +82,7 @@ if parser.state == PageType.RESULT:
         print 'q. Quit'
         l = sys.stdin.readline().strip()
         print
-        print '~' * 80
+        print '~' * 79
 
         if l.isdigit() and int(l) <= len(details):
             for detail in details[int(l) - 1]:
@@ -91,7 +91,7 @@ if parser.state == PageType.RESULT:
                     print '[%s] %s\n%s' % (time, ' -> '.join(detail['station']), '\n'.join(detail['info']))
                 else:
                     print '\n'.join(detail['info'])
-                print '-' * 80
+                print '-' * 79
         print
 else:
     print 'Error - unknown page returned.'