summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2008-08-20 13:37:15 +0200
committerJakub Steiner <jimmac@gmail.com>2008-08-20 13:37:15 +0200
commit14d97541f608270092a13bd020bef8725c1627e3 (patch)
tree04d76c985b56d56aed6ce83ad2859b57304f1b12
parent3d2d0f9e4f241d9d230e1ec657057c38000e4110 (diff)
updated version form muks that does the right thing.
-rwxr-xr-xcontrib/render-bitmaps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/render-bitmaps.py b/contrib/render-bitmaps.py
index 7d8aa50..a0e9cb6 100755
--- a/contrib/render-bitmaps.py
+++ b/contrib/render-bitmaps.py
@@ -21,7 +21,7 @@ def render(file):
print "\t%s" % (file)
svg = xml.dom.minidom.parse(SRC + "/" + file)
for icon in svg.getElementsByTagName("g"):
- if icon.getAttribute("inkscape:label") != "plate":
+ if icon.getAttribute("inkscape:label").find("plate") == -1:
continue
for in_node in icon.getElementsByTagName("text"):
if in_node.getAttribute("inkscape:label") == "icon-name":