Commit 40a71c44 authored by Matthias Putz's avatar Matthias Putz

added todos based on feedback + fix

parent 4ab0383e
# TODO # TODO
* upload via https
* [Linux] analyse problem if git-config not set
* comment username + email in config
* strange behaviour if prompted
# Notes on compability # Notes on compability
* Windows does not allow links to non-existing files and dirs * Windows does not allow links to non-existing files and dirs
......
...@@ -582,7 +582,7 @@ class Remote(object): ...@@ -582,7 +582,7 @@ class Remote(object):
else: else:
try: try:
info_url = u + 'ssh_info' info_url = u + 'ssh_info'
info = urllib.request.urlopen(info_url).read() info = portable.stream2str(urllib.request.urlopen(info_url).read())
if '<' in info: if '<' in info:
# Assume the server gave us some sort of HTML # Assume the server gave us some sort of HTML
# response back, like maybe a login page. # response back, like maybe a login page.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment