diff options
| author | jvoisin | 2013-10-30 14:34:42 +0000 |
|---|---|---|
| committer | jvoisin | 2013-10-30 14:34:42 +0000 |
| commit | a646ebbd3a0f54b43fc610134d2ebb39b5c4c732 (patch) | |
| tree | c1f91bd5b7f334f13799ba8ad62407c7a904ac39 /MAT/mat.py | |
| parent | de28b830e9490a1283b9a3b68de4bf48c11d944c (diff) | |
First steps toward a Python3 support
Diffstat (limited to 'MAT/mat.py')
| -rw-r--r-- | MAT/mat.py | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -65,7 +65,7 @@ def list_supported_formats(): | |||
| 65 | 65 | ||
| 66 | localy_supported = [] | 66 | localy_supported = [] |
| 67 | for item in handler.list: | 67 | for item in handler.list: |
| 68 | if strippers.STRIPPERS.has_key(item['mimetype'].split(',')[0]): | 68 | if item['mimetype'].split(',')[0] in strippers.STRIPPERS: |
| 69 | localy_supported.append(item) | 69 | localy_supported.append(item) |
| 70 | 70 | ||
| 71 | return localy_supported | 71 | return localy_supported |
