mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
nmbug-status: Decode Popen output using the user's locale
Avoid: $ ./nmbug-status --list-views Traceback (most recent call last): File "./nmbug-status", line 47, in <module> 'cat-file', 'blob', sha1+':status-config.json'], TypeError: can't concat bytes to str by explicitly converting the byte-stream read from Popen into a Unicode string. On Python 2, this conversion is str -> unicode; on Python 3 it is bytes -> str. _ENCODING is derived from the user's locale (or system default) in an attempt to match Git's output encoding. It may be more robust to skip the encoding/decoding by using a Python wrapper like pygit2 [1] for Git access. That's a fairly heavy dependency though, and using the locale will probably work. [1]: http://www.pygit2.org/
This commit is contained in:
parent
ee6b5c372f
commit
fd29d3f4fb
1 changed files with 15 additions and 8 deletions
|
@ -8,8 +8,10 @@
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import codecs
|
||||||
import datetime
|
import datetime
|
||||||
import email.utils
|
import email.utils
|
||||||
|
import locale
|
||||||
import urllib
|
import urllib
|
||||||
import json
|
import json
|
||||||
import argparse
|
import argparse
|
||||||
|
@ -17,6 +19,10 @@ import os
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
|
_ENCODING = locale.getpreferredencoding() or sys.getdefaultencoding()
|
||||||
|
|
||||||
|
|
||||||
# parse command line arguments
|
# parse command line arguments
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
|
@ -37,15 +43,16 @@ else:
|
||||||
nmbhome = os.getenv('NMBGIT', os.path.expanduser('~/.nmbug'))
|
nmbhome = os.getenv('NMBGIT', os.path.expanduser('~/.nmbug'))
|
||||||
|
|
||||||
# read only the first line from the pipe
|
# read only the first line from the pipe
|
||||||
sha1 = subprocess.Popen(['git', '--git-dir', nmbhome,
|
sha1_bytes = subprocess.Popen(
|
||||||
'show-ref', '-s', 'config'],
|
['git', '--git-dir', nmbhome, 'show-ref', '-s', 'config'],
|
||||||
stdout=subprocess.PIPE).stdout.readline()
|
stdout=subprocess.PIPE).stdout.readline()
|
||||||
|
sha1 = sha1_bytes.decode(_ENCODING).rstrip()
|
||||||
|
|
||||||
sha1 = sha1.rstrip()
|
fp_byte_stream = subprocess.Popen(
|
||||||
|
['git', '--git-dir', nmbhome, 'cat-file', 'blob',
|
||||||
fp = subprocess.Popen(['git', '--git-dir', nmbhome,
|
sha1+':status-config.json'],
|
||||||
'cat-file', 'blob', sha1+':status-config.json'],
|
stdout=subprocess.PIPE).stdout
|
||||||
stdout=subprocess.PIPE).stdout
|
fp = codecs.getreader(encoding=_ENCODING)(stream=fp_byte_stream)
|
||||||
|
|
||||||
config = json.load(fp)
|
config = json.load(fp)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue