diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 402e41d..21d5576 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: 3.10.14 - name: Install dependencies run: | diff --git a/app.py b/app.py index 1c1a42e..b615924 100644 --- a/app.py +++ b/app.py @@ -107,7 +107,7 @@ def run_mirror(): if __name__ == "__main__": while True: - print("Running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime())) + print("--- Running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) + " ---") run_mirror() - print("Finished running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) + ". Sleeping for 30 seconds.") + print("--- Finished running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) + ". Sleeping for 30 seconds." + " ---") time.sleep(30)