diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-25 22:13:20 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-25 22:13:20 +0100 |
commit | bab0a143a3a6655d4dc18c7188b6be5f24b2352a (patch) | |
tree | b11157c7e7d17210b8763ace9adcb680e7c40e06 /src/data_forms.py | |
parent | 67419b4a7f4d908009ad40127525dbc995fb832c (diff) | |
download | poezio-bab0a143a3a6655d4dc18c7188b6be5f24b2352a.tar.gz poezio-bab0a143a3a6655d4dc18c7188b6be5f24b2352a.tar.bz2 poezio-bab0a143a3a6655d4dc18c7188b6be5f24b2352a.tar.xz poezio-bab0a143a3a6655d4dc18c7188b6be5f24b2352a.zip |
Fix an error on data_forms tab
Diffstat (limited to 'src/data_forms.py')
-rw-r--r-- | src/data_forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data_forms.py b/src/data_forms.py index 0ad62f73..2d17a304 100644 --- a/src/data_forms.py +++ b/src/data_forms.py @@ -54,7 +54,7 @@ class DataFormsTab(Tab): self._on_send(self._form) return True - def on_input(self, key): + def on_input(self, key, raw=False): if key in self.key_func: res = self.key_func[key]() if res: |