Fix up a missing None string handler from the previous commit

This commit is contained in:
Chris Jones 2009-07-22 09:43:41 +01:00
parent dcd997b3de
commit 1283aafd42
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ class ProfileEditor:
value = value[0]
keyval = 0
mask = 0
if value is not None:
if value is not None and value != "None":
(keyval, mask) = self.tkbobj._parsebinding(value)
if (row[2], row[3]) != (keyval, mask):
changed_keybindings.append ((row[0], accel))