Index: cinnamon/files/usr/lib/cinnamon-settings/bin/capi.py
===================================================================
--- cinnamon.orig/files/usr/lib/cinnamon-settings/bin/capi.py	2014-03-12 12:31:38.979618517 +0100
+++ /dev/null	1970-01-01 00:00:00.000000000 +0000
@@ -1,37 +0,0 @@
-# Copyright (C) 2007-2010 www.stani.be
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see http://www.gnu.org/licenses/
-
-from gi.repository import Gio, GObject
-
-class CManager():
-    def __init__(self):
-        self.extension_point = Gio.io_extension_point_register ("cinnamon-control-center-1")
-        self.modules = Gio.io_modules_load_all_in_directory ("/usr/lib/cinnamon-control-center-1/panels")
-
-    def get_c_widget(self, mod_id):
-        extension = self.extension_point.get_extension_by_name(mod_id)
-        if extension is None:
-            print("Could not load %s module; is the cinnamon-control-center package installed?" % mod_id)
-            return None
-        panel_type = extension.get_type()
-        return GObject.new(panel_type)
-
-    def lookup_c_module(self, mod_id):
-        extension = self.extension_point.get_extension_by_name(mod_id)
-        if extension is None:
-            print("Could not find %s module; is the cinnamon-control-center package installed?" % mod_id)
-            return False
-        else:
-            return True
\ No newline at end of file
Index: cinnamon/files/usr/lib/cinnamon-settings/bin/capi.py.in
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ cinnamon/files/usr/lib/cinnamon-settings/bin/capi.py.in	2014-03-12 14:46:45.864537836 +0100
@@ -0,0 +1,37 @@
+# Copyright (C) 2007-2010 www.stani.be
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see http://www.gnu.org/licenses/
+
+from gi.repository import Gio, GObject
+
+class CManager():
+    def __init__(self):
+        self.extension_point = Gio.io_extension_point_register ("cinnamon-control-center-1")
+        self.modules = Gio.io_modules_load_all_in_directory ("/usr/lib/@DEB_HOST_MULTIARCH@/cinnamon-control-center-1/panels")
+
+    def get_c_widget(self, mod_id):
+        extension = self.extension_point.get_extension_by_name(mod_id)
+        if extension is None:
+            print("Could not load %s module; is the cinnamon-control-center package installed?" % mod_id)
+            return None
+        panel_type = extension.get_type()
+        return GObject.new(panel_type)
+
+    def lookup_c_module(self, mod_id):
+        extension = self.extension_point.get_extension_by_name(mod_id)
+        if extension is None:
+            print("Could not find %s module; is the cinnamon-control-center package installed?" % mod_id)
+            return False
+        else:
+            return True
