# HG changeset patch # User catherine@Elli.myhome.westell.com # Date 1222461077 14400 # Node ID c26bc528cb050bb3736ae8f89f319cb74824f19b # Parent 802d8df993dac9a6463eb4a8ffbac8b415dd019f separation of Plot class successful diff -r 802d8df993da -r c26bc528cb05 sqlpyPlus.py --- a/sqlpyPlus.py Fri Sep 26 16:11:29 2008 -0400 +++ b/sqlpyPlus.py Fri Sep 26 16:31:17 2008 -0400 @@ -369,8 +369,8 @@ return result if self.xticks: pylab.xticks(self.xvalues, self.xticks) - for (colName, yseries) in self.yserieslists.items(): - pylab.plot(xvalues, yseries, '-o') + for yseries in self.yserieslists: + pylab.plot(self.xvalues, yseries, '-o') pylab.xlabel(self.xlabel) pylab.title(self.title) pylab.legend(self.legends)