Normalise display name when creating DBus name
This commit is contained in:
parent
7c73aaa080
commit
1c0f934529
|
@ -23,7 +23,7 @@ BUS_BASE = 'net.tenshu.Terminator2'
|
||||||
BUS_PATH = '/net/tenshu/Terminator2'
|
BUS_PATH = '/net/tenshu/Terminator2'
|
||||||
try:
|
try:
|
||||||
# Try and include the X11 display name in the dbus bus name
|
# Try and include the X11 display name in the dbus bus name
|
||||||
DISPLAY = hex(hash(Gdk.get_display())).replace('-', '_')
|
DISPLAY = hex(hash(Gdk.get_display().partition('.')[0]))
|
||||||
BUS_NAME = '%s%s' % (BUS_BASE, DISPLAY)
|
BUS_NAME = '%s%s' % (BUS_BASE, DISPLAY)
|
||||||
except:
|
except:
|
||||||
BUS_NAME = BUS_BASE
|
BUS_NAME = BUS_BASE
|
||||||
|
|
Loading…
Reference in New Issue