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

added todos based on feedback + fix

parent 4ab0383e
# TODO
* upload via https
* [Linux] analyse problem if git-config not set
* comment username + email in config
* strange behaviour if prompted
# Notes on compability
* Windows does not allow links to non-existing files and dirs
......@@ -53,4 +58,4 @@
* => restart oneself with '| less' appended
* extensive usage of "new" subprocess module in python
* git commands not stopped if main program terminates due to STRG+C
* => added sdignal handler
\ No newline at end of file
* => added sdignal handler
......@@ -582,7 +582,7 @@ class Remote(object):
else:
try:
info_url = u + 'ssh_info'
info = urllib.request.urlopen(info_url).read()
info = portable.stream2str(urllib.request.urlopen(info_url).read())
if '<' in info:
# Assume the server gave us some sort of HTML
# 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