Spaces:
Runtime error
Runtime error
| with open(r'web_dashboard\index.html', 'r', encoding='utf-8') as f: | |
| c = f.read() | |
| c = c.replace('src="assets/logo.png"', 'src="/assets/logo.png"') | |
| with open(r'web_dashboard\index.html', 'w', encoding='utf-8') as f: | |
| f.write(c) | |