Make quake related error be a dbg()
This commit is contained in:
parent
c33b89a74c
commit
201057e7f2
|
@ -35,7 +35,7 @@ from terminatorlib.prefs_profile import ProfileEditor
|
||||||
try:
|
try:
|
||||||
import deskbar.core.keybinder as bindkey
|
import deskbar.core.keybinder as bindkey
|
||||||
except:
|
except:
|
||||||
print (_("Unable to find python bindings for deskbar, "\
|
dbg (_("Unable to find python bindings for deskbar, "\
|
||||||
"QUAKE mode is not available."))
|
"QUAKE mode is not available."))
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -275,6 +275,7 @@ class Terminator:
|
||||||
try:
|
try:
|
||||||
bindkey.tomboy_keybinder_bind(self.conf.keybindings['quake'],self.cbkeyCloak,term)
|
bindkey.tomboy_keybinder_bind(self.conf.keybindings['quake'],self.cbkeyCloak,term)
|
||||||
except:
|
except:
|
||||||
|
dbg (_("Unable to bind quake key"))
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def set_handle_size (self, size):
|
def set_handle_size (self, size):
|
||||||
|
|
Loading…
Reference in New Issue