diff options
author | Stefano Karapetsas <[email protected]> | 2013-06-26 05:10:33 -0700 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-06-26 05:10:33 -0700 |
commit | 7907b525b6eb6e848f4843fbd12577821f9a49de (patch) | |
tree | 321249f896ffb05e4a0bd4c74310469eafe15b72 /serializeimages.py | |
parent | 27da3a4c4e398d9a0eca099e9da6e8d742b0612f (diff) | |
parent | e19b15358829cc77bd9e13013722bcadb5e7e450 (diff) | |
download | caja-dropbox-7907b525b6eb6e848f4843fbd12577821f9a49de.tar.bz2 caja-dropbox-7907b525b6eb6e848f4843fbd12577821f9a49de.tar.xz |
Merge pull request #6 from NiceandGently/master
fix automake-1.13 deprecations
Diffstat (limited to 'serializeimages.py')
-rw-r--r-- | serializeimages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/serializeimages.py b/serializeimages.py index 26427d4..0adcd98 100644 --- a/serializeimages.py +++ b/serializeimages.py @@ -11,8 +11,8 @@ def replace_many(src2dest, buf): return src_re.sub(replace_repl, buf) if __name__ == '__main__': - pixbuf64 = gtk.gdk.pixbuf_new_from_file("data/icons/hicolor/64x64/apps/dropbox.png") - pixbuf16 = gtk.gdk.pixbuf_new_from_file("data/icons/hicolor/16x16/apps/dropbox.png") + pixbuf64 = gtk.gdk.pixbuf_new_from_file("data/icons/hicolor/64x64/apps/caja-dropbox.png") + pixbuf16 = gtk.gdk.pixbuf_new_from_file("data/icons/hicolor/16x16/apps/caja-dropbox.png") src2dest = {'@PACKAGE_VERSION@': sys.argv[1], '@DESKTOP_FILE_DIR@': sys.argv[2], '@IMAGEDATA64@': ("gtk.gdk.pixbuf_new_from_data(%r, gtk.gdk.COLORSPACE_RGB, %r, %r, %r, %r, %r)" % |