Skip to content

Commit dd735d5

Browse files
authored
Merge pull request tariqbuilds#444 from zmrow/update/fix_css_file_reference_issue_435
Fixes issue 435 - Linux-dash not working when python is use.
2 parents 0a534f7 + 1720bd6 commit dd735d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def do_GET(self):
3636
self.path = 'index.html'
3737
f = open(appRootPath + os.sep + self.path)
3838
data = f.read()
39-
if self.path.startswith('/main.css'):
39+
if self.path.startswith('/linuxDash.min.css'):
4040
contentType = 'text/css'
4141
f.close()
4242
self.send_response(200)

0 commit comments

Comments
 (0)