changeset 163:85821ea8b30d 1.5.0

making no-line plots available
author catherine@dellzilla
date Mon, 29 Sep 2008 17:10:37 -0400
parents 8a0490229923
children c04f5c9d0906
files sqlpython/plothandler.py sqlpython/sqlpython.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sqlpython/plothandler.py	Mon Sep 29 17:02:23 2008 -0400
+++ b/sqlpython/plothandler.py	Mon Sep 29 17:10:37 2008 -0400
@@ -69,7 +69,7 @@
             if self.outformat == '\\l':
                 self.line('-o')
             elif self.outformat == '\\L':
-                self.line('-')
+                self.line('o')
             elif self.outformat == '\\p':
                 self.pie()
             else:
--- a/sqlpython/sqlpython.py	Mon Sep 29 17:02:23 2008 -0400
+++ b/sqlpython/sqlpython.py	Mon Sep 29 17:10:37 2008 -0400
@@ -108,7 +108,7 @@
 \\t   transposed
 \\x   XML
 \\l   line plot, with markers
-\\L   line plot, lines only
+\\L   scatter plot (no lines)
 \\b   bar graph
 \\p   pie chart"""
         print self.do_terminators.__doc__