Skip to content

Commit

Permalink
fix debug logging
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@6421 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 9, 2014
1 parent eda0082 commit 742df0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/platform/darwin/keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def set_modifier_mappings(self, mappings):
self.meta_modifier = self.modifier_keys.get("Meta_L") or self.modifier_keys.get("Meta_R")
self.control_modifier = self.modifier_keys.get("Control_L") or self.modifier_keys.get("Control_R")
self.num_lock_modifier = self.modifier_keys.get("Num_Lock")
log("set_modifier_mappings(..) meta=%s, control=%s, numlock=%s", mappings, self.meta_modifier, self.control_modifier, self.num_lock_modifier)
log("set_modifier_mappings(%s) meta=%s, control=%s, numlock=%s", mappings, self.meta_modifier, self.control_modifier, self.num_lock_modifier)
#find the keysyms and keycodes to use for each key we may translate:
for orig_keysym in KEYS_TRANSLATION_OPTIONS.keys():
new_def = self.find_translation(orig_keysym)
Expand Down

0 comments on commit 742df0a

Please sign in to comment.