diff options
| -rw-r--r-- | scripts/historyplacement.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/historyplacement.py b/scripts/historyplacement.py index d4e7d465..815b31cb 100644 --- a/scripts/historyplacement.py +++ b/scripts/historyplacement.py @@ -75,10 +75,8 @@ def _load(data): _data.append([]) _data[data.screen].append(state) - except ValueError: - pass - except IndexError: - pass + except ValueError: pass + except IndexError: pass file.close() def _save(data): |
