git-svn-id: https://wikiteam.googlecode.com/svn/trunk@744 31edc4fc-5e31-b4c4-d58b-c8bc928bcb95
pull/117/head
emijrp 12 years ago
parent c8ca525ff7
commit f62e2686de

@ -117,9 +117,13 @@ def upload(wikis):
#or copyright info from #footer in mainpage
if baseurl and not rightsinfourl and not rightsinfotext:
f = urllib.urlopen(baseurl)
raw = f.read()
f.close()
raw = ''
try:
f = urllib.urlopen(baseurl)
raw = f.read()
f.close()
except:
pass
rightsinfotext = ''
rightsinfourl = ''
try:

Loading…
Cancel
Save