Mercurial > libervia-backend
comparison sat_frontends/bridge/dbus_bridge.py @ 2628:779351da2c13
core, frontends: replaced org\.goffi namespaces by org.salutatoi + fixed generation:
generation of D-Bus bridge has been broken by black formatting tool, this patch fixes this.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 01 Jul 2018 20:37:58 +0200 |
parents | 973d4551ffae |
children | 712cb4ff3e13 |
comparison
equal
deleted
inserted
replaced
2627:163aab916bcf | 2628:779351da2c13 |
---|---|
27 from dbus.mainloop.glib import DBusGMainLoop | 27 from dbus.mainloop.glib import DBusGMainLoop |
28 DBusGMainLoop(set_as_default=True) | 28 DBusGMainLoop(set_as_default=True) |
29 | 29 |
30 import ast | 30 import ast |
31 | 31 |
32 const_INT_PREFIX = "org.goffi.SAT" # Interface prefix | 32 const_INT_PREFIX = "org.salutatoi.SAT" # Interface prefix |
33 const_ERROR_PREFIX = const_INT_PREFIX + ".error" | 33 const_ERROR_PREFIX = const_INT_PREFIX + ".error" |
34 const_OBJ_PATH = '/org/goffi/SAT/bridge' | 34 const_OBJ_PATH = '/org/salutatoi/SAT/bridge' |
35 const_CORE_SUFFIX = ".core" | 35 const_CORE_SUFFIX = ".core" |
36 const_PLUGIN_SUFFIX = ".plugin" | 36 const_PLUGIN_SUFFIX = ".plugin" |
37 const_TIMEOUT = 120 | 37 const_TIMEOUT = 120 |
38 | 38 |
39 | 39 |