From ea8a5f73bf93d872395fa40d13c24e5ab85b62fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20B=C4=99dkowski?= Date: Sat, 20 Apr 2013 10:23:38 +0200 Subject: [PATCH] fix wrong encoding for rhytmbox & session_gnome files change coding from UTF8 to utf-8 duo to problems with intltool-update Closes: LP#1170833 --- kupfer/plugin/rhythmbox.py | 2 +- kupfer/plugin/session_gnome.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/kupfer/plugin/rhythmbox.py b/kupfer/plugin/rhythmbox.py index 29f49a9..7cc3405 100644 --- a/kupfer/plugin/rhythmbox.py +++ b/kupfer/plugin/rhythmbox.py @@ -1,4 +1,4 @@ -# -*- coding: UTF8 -*- +# -*- coding: utf-8 -*- __kupfer_name__ = _("Rhythmbox") __kupfer_sources__ = ("RhythmboxSource", ) __description__ = _("Play and enqueue tracks and browse the music library") diff --git a/kupfer/plugin/session_gnome.py b/kupfer/plugin/session_gnome.py index 4ebcd9a..993d2dc 100644 --- a/kupfer/plugin/session_gnome.py +++ b/kupfer/plugin/session_gnome.py @@ -1,4 +1,4 @@ -# -*- coding: UTF8 -*- +# -*- coding: utf-8 -*- __kupfer_name__ = _("GNOME Session Management") __kupfer_sources__ = ("GnomeItemsSource", ) __description__ = _("Special items and actions for GNOME environment") @@ -34,4 +34,3 @@ class GnomeItemsSource (support.CommonSource): support.LockScreen(LOCKSCREEN_CMD), support.Shutdown(SHUTDOWN_CMD), ) - -- 1.7.10.4