diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dcaf716 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +index.html diff --git a/script.py b/script.py index 50aeaae..4d2f248 100644 --- a/script.py +++ b/script.py @@ -22,5 +22,5 @@ output = template.render(uptime = thing.stdout) # printing the output on screen print(output) -with open("renders/output.html", 'w') as f: +with open("index.html", 'w') as f: print(output, file = f)