diff options
author | mathieui <mathieui@mathieui.net> | 2012-12-30 19:31:27 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-12-30 19:31:27 +0100 |
commit | d66cf8e1fedb89b0bc729369a5809c8ca5d2ccb5 (patch) | |
tree | da87333d61bbbdab97fd091ad86062946f0e8450 | |
parent | 80c79d8b791bd659059c2a5c8935b32f7e37edde (diff) | |
download | poezio-d66cf8e1fedb89b0bc729369a5809c8ca5d2ccb5.tar.gz poezio-d66cf8e1fedb89b0bc729369a5809c8ca5d2ccb5.tar.bz2 poezio-d66cf8e1fedb89b0bc729369a5809c8ca5d2ccb5.tar.xz poezio-d66cf8e1fedb89b0bc729369a5809c8ca5d2ccb5.zip |
Typo
-rw-r--r-- | src/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows.py b/src/windows.py index c9ba0f61..09cafd91 100644 --- a/src/windows.py +++ b/src/windows.py @@ -946,7 +946,7 @@ class TextWin(Win): """ with_timestamps = config.get("show_timestamps", 'true') != 'false' for i in range(len(self.built_lines)-1, -1, -1): - if self.build_lines[i] and self.built_lines[i].msg.identifier == old_id: + if self.built_lines[i] and self.built_lines[i].msg.identifier == old_id: index = i while index >= 0 and self.built_lines[index].msg.identifier == old_id: self.built_lines.pop(index) |