diff options
| author | Mikhail Osipov <mike.osipov@gmail.com> | 2014-02-20 21:45:42 +0400 |
|---|---|---|
| committer | Mikhail Osipov <mike.osipov@gmail.com> | 2014-02-20 21:45:42 +0400 |
| commit | 56f811528df0d4ebeed2b361345285aa2362b4ec (patch) | |
| tree | c8ce32b2377a92eb24022a2ba0b3b7d7ea981cc2 | |
| parent | 338968c8c600777a9d76adb0716c27f53c863a11 (diff) | |
cue: strip leading and trailing spaces
| -rw-r--r-- | cutter/cue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cutter/cue.py b/cutter/cue.py index 0d407c7..2e5c619 100644 --- a/cutter/cue.py +++ b/cutter/cue.py @@ -169,7 +169,7 @@ class CueParser: cur = [] def push(): - lst.append("".join(cur)) + lst.append("".join(cur).strip()) cur[:] = [] for ch in args: |
