|
|
@ -2,7 +2,7 @@ |
|
|
|
# This file is part of pygal |
|
|
|
# This file is part of pygal |
|
|
|
# |
|
|
|
# |
|
|
|
# A python svg graph plotting library |
|
|
|
# A python svg graph plotting library |
|
|
|
# Copyright © 2012-2015 Kozea |
|
|
|
# Copyright © 2012-2016 Kozea |
|
|
|
# |
|
|
|
# |
|
|
|
# This library is free software: you can redistribute it and/or modify it under |
|
|
|
# This library is free software: you can redistribute it and/or modify it under |
|
|
|
# the terms of the GNU Lesser General Public License as published by the Free |
|
|
|
# the terms of the GNU Lesser General Public License as published by the Free |
|
|
@ -72,7 +72,7 @@ class Svg(object): |
|
|
|
self.root.attrib['class'] = ' '.join(graph.classes) |
|
|
|
self.root.attrib['class'] = ' '.join(graph.classes) |
|
|
|
self.root.append( |
|
|
|
self.root.append( |
|
|
|
etree.Comment(u( |
|
|
|
etree.Comment(u( |
|
|
|
'Generated with pygal %s (%s) ©Kozea 2011-2016 on %s' % ( |
|
|
|
'Generated with pygal %s (%s) ©Kozea 2012-2016 on %s' % ( |
|
|
|
__version__, |
|
|
|
__version__, |
|
|
|
'lxml' if etree.lxml else 'etree', |
|
|
|
'lxml' if etree.lxml else 'etree', |
|
|
|
date.today().isoformat())))) |
|
|
|
date.today().isoformat())))) |
|
|
|