mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
IGN:...
This commit is contained in:
parent
e685f4f79d
commit
a89532625a
@ -333,9 +333,9 @@ class Splitter(LoggingInterface):
|
|||||||
'//pre',
|
'//pre',
|
||||||
'//hr',
|
'//hr',
|
||||||
'//p',
|
'//p',
|
||||||
|
'//div',
|
||||||
'//br',
|
'//br',
|
||||||
'//li',
|
'//li',
|
||||||
'//div',
|
|
||||||
):
|
):
|
||||||
elems = root.xpath(path,
|
elems = root.xpath(path,
|
||||||
namespaces={'re':'http://exslt.org/regular-expressions'})
|
namespaces={'re':'http://exslt.org/regular-expressions'})
|
||||||
|
@ -205,6 +205,9 @@ class Server(object):
|
|||||||
ax.set_xlabel('Days ago')
|
ax.set_xlabel('Days ago')
|
||||||
ax.set_ylabel('Income ($)')
|
ax.set_ylabel('Income ($)')
|
||||||
ax.hlines([stats.daily_average], 0, days-1)
|
ax.hlines([stats.daily_average], 0, days-1)
|
||||||
|
ax.hlines([stats.daily_average+stats.daily_deviation,
|
||||||
|
stats.daily_average-stats.daily_deviation], 0, days-1,
|
||||||
|
linestyle=':',color='r')
|
||||||
ax.set_xlim([0, days-1])
|
ax.set_xlim([0, days-1])
|
||||||
text = u'''\
|
text = u'''\
|
||||||
Total: $%(total).2f
|
Total: $%(total).2f
|
||||||
|
Loading…
x
Reference in New Issue
Block a user