diff options
Diffstat (limited to 'project.py')
| -rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -2274,7 +2274,7 @@ class Project(object): | |||
| 2274 | p.stderr)) | 2274 | p.stderr)) |
| 2275 | r = p.stdout | 2275 | r = p.stdout |
| 2276 | try: | 2276 | try: |
| 2277 | r = r.decode() | 2277 | r = r.decode('utf-8') |
| 2278 | except AttributeError: | 2278 | except AttributeError: |
| 2279 | pass | 2279 | pass |
| 2280 | if r.endswith('\n') and r.index('\n') == len(r) - 1: | 2280 | if r.endswith('\n') and r.index('\n') == len(r) - 1: |
