chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba96af1
)
Some diagnostic output for http update check mode
author
Ciaran Gultnieks
<ciaran@ciarang.com>
Tue, 29 Oct 2013 19:32:51 +0000
(19:32 +0000)
committer
Ciaran Gultnieks
<ciaran@ciarang.com>
Tue, 29 Oct 2013 19:32:51 +0000
(19:32 +0000)
fdroidserver/checkupdates.py
patch
|
blob
|
history
diff --git
a/fdroidserver/checkupdates.py
b/fdroidserver/checkupdates.py
index fa014958b2e79f8ef45ddd8a545664b69cd242eb..b8a0d124553e854ce3d6ab1cfcdd420d64c732b0 100644
(file)
--- a/
fdroidserver/checkupdates.py
+++ b/
fdroidserver/checkupdates.py
@@
-47,6
+47,7
@@
def check_http(app):
vercode = "99999999"
if len(urlcode) > 0:
+ print "...requesting {0}".format(urlcode)
req = urllib2.Request(urlcode, None)
resp = urllib2.urlopen(req, None, 20)
page = resp.read()
@@
-59,6
+60,7
@@
def check_http(app):
version = "??"
if len(urlver) > 0:
if urlver != '.':
+ print "...requesting {0}".format(urlver)
req = urllib2.Request(urlver, None)
resp = urllib2.urlopen(req, None, 20)
page = resp.read()