source.keybindings -> source['keybindings'] now.

This commit is contained in:
Thomas Hurst 2008-08-22 06:45:31 +01:00
parent 4dafba1270
commit f685f3e317
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class TerminatorConfig:
self._keys = {}
for source in reversed(self.sources):
try:
val = source.keybindings
val = source['keybindings']
self._keys.update(val)
except:
pass