docutil/docsvg.py
changeset 1828 396da88d7b5c
parent 1801 58ff55053518
child 1832 0f1081928d65
equal deleted inserted replaced
1827:b8b47f9b5e56 1828:396da88d7b5c
    62         except Exception:
    62         except Exception:
    63             wx.MessageBox("Inkscape is not found or installed !")
    63             wx.MessageBox("Inkscape is not found or installed !")
    64             return None
    64             return None
    65     else:
    65     else:
    66         svgexepath = os.path.join("/usr/bin", "inkscape")
    66         svgexepath = os.path.join("/usr/bin", "inkscape")
    67         if(os.path.isfile(svgexepath)):
    67         if os.path.isfile(svgexepath):
    68             open_lin_svg(svgexepath, svgfile)
    68             open_lin_svg(svgexepath, svgfile)
    69         else:
    69         else:
    70             wx.MessageBox("Inkscape is not found or installed !")
    70             wx.MessageBox("Inkscape is not found or installed !")
    71             return None
    71             return None