We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26241c1 commit 53dc343Copy full SHA for 53dc343
1 file changed
circle_urls.py
@@ -14,11 +14,11 @@
14
15
# For each file, we need to replace all links to have correct .html extension
16
search_names = [os.path.basename(f) for f in files]
17
-
18
for html_file in files:
19
with open(html_file,'r') as filey:
20
content = filey.read()
21
for search_name in search_names:
22
content = content.replace('%s"' %(search_name),'%s.html"' %(search_name))
+ content = content.replace('/images/logo/logo.svg','http://singularity.lbl.gov/images/logo/logo.svg')
23
with open(html_file,'w') as filey:
24
filey.write(content)
0 commit comments