jbaehr

Results 34 comments of jbaehr

I'd rather prefer `application/json-lines` otherwise it may look like a typo ;-) In addition to the Media Type, a registered structured suffix may be interesting. In my eyes even more...

This seems like a duplicate of #9. The whole purpose of the `Content-Type` header is to communicate the media type.

I got the very same problem here, using Windows 7 and Python 3.5 and git-cc [01a35a3a](https://github.com/charleso/git-cc/commit/01a35a3a5f4e387c2b95feeafd6778a83ea679bd) ``` python Traceback (most recent call last): File "c:\program files (x86)\python35-32\lib\site-packages\git_cc\rebase.py", line 65, in...

Apparently, the problem is the call to `encode` in `rebase.py:194` ``` python git_exec(['commit', '-m', comment.encode(ENCODING)], env=env) ``` In python3 this method of `str` returns an instance of `bytes`. Simply removing...