mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
2012566954
This is needed for the newer python-2.7.x. Include two additional dependencies Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
26 lines
988 B
Diff
26 lines
988 B
Diff
diff --git a/gourmet/gtk_extras/ratingWidget.py b/gourmet/gtk_extras/ratingWidget.py
|
|
index 0e01735..efa6463 100644
|
|
--- a/gourmet/gtk_extras/ratingWidget.py
|
|
+++ b/gourmet/gtk_extras/ratingWidget.py
|
|
@@ -135,7 +135,7 @@ class StarGenerator:
|
|
if is_rgba: rowstride = 4
|
|
else: rowstride = 3
|
|
pb=gtk.gdk.pixbuf_new_from_data(
|
|
- image.tostring(),
|
|
+ image.tobytes(),
|
|
gtk.gdk.COLORSPACE_RGB,
|
|
is_rgba,
|
|
8,
|
|
diff --git a/gourmet/plugins/browse_recipes/icon_helpers.py b/gourmet/plugins/browse_recipes/icon_helpers.py
|
|
index 61c772c..2e7b08b 100644
|
|
--- a/gourmet/plugins/browse_recipes/icon_helpers.py
|
|
+++ b/gourmet/plugins/browse_recipes/icon_helpers.py
|
|
@@ -38,7 +38,7 @@ def get_pixbuf_from_image (image):
|
|
if is_rgba: rowstride = 4
|
|
else: rowstride = 3
|
|
pb=gtk.gdk.pixbuf_new_from_data(
|
|
- image.tostring(),
|
|
+ image.tobytes(),
|
|
gtk.gdk.COLORSPACE_RGB,
|
|
is_rgba,
|
|
8,
|