Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 129368 | Differences between
and this patch

Collapse All | Expand All

(-)dblatex-0.3.7-orig/lib/dbtexmf/core/imagedata.py (-1 / +1 lines)
Lines 66-72 Link Here
66
66
67
class SvgConverter(ImageConverter):
67
class SvgConverter(ImageConverter):
68
    def convert(self, input, output, format, doexec=1):
68
    def convert(self, input, output, format, doexec=1):
69
        cmd = "inkscape -z -D --export-%s=%s \"%s\"" % (format, output, input)
69
        cmd = "rsvg-convert -f %s -o \"%s\" \"%s\"" % (format, output, input)
70
        return self.system(cmd, doexec)
70
        return self.system(cmd, doexec)
71
71
72
72

Return to bug 129368