diff --git a/modules/http_host/http_host.py b/modules/http_host/http_host.py index 63a4062..e25da54 100755 --- a/modules/http_host/http_host.py +++ b/modules/http_host/http_host.py @@ -100,7 +100,7 @@ def sync(force): On a new server this also takes care of everything, no need to run anything manually. """ - print(f'---\n{now}\nstarting full_sync') + print(f'---\n{now}\nStarting full_sync') full_sync(force) diff --git a/modules/tile_gen/tile_gen.py b/modules/tile_gen/tile_gen.py index ebe0f3a..917590c 100755 --- a/modules/tile_gen/tile_gen.py +++ b/modules/tile_gen/tile_gen.py @@ -26,7 +26,7 @@ def make_tiles(area, upload): Generate tiles for a given area, optionally upload it to the btrfs bucket """ - print(f'---\n{now}\nstarting make-tiles {area} upload: {upload}') + print(f'---\n{now}\nStarting make-tiles {area} upload: {upload}') run_folder = run_planetiler(area) make_btrfs(run_folder) @@ -42,7 +42,7 @@ def upload_area_(area): Upload all runs from a given area to the btrfs bucket """ - print(f'---\n{now}\nstarting upload-area {area}') + print(f'---\n{now}\nStarting upload-area {area}') upload_area(area) @@ -53,7 +53,7 @@ def make_indexes(): Make indexes for all buckets """ - print(f'---\n{now}\nstarting make-indexes') + print(f'---\n{now}\nStarting make-indexes') for bucket in ['ofm-btrfs', 'ofm-assets']: make_indexes_for_bucket(bucket) @@ -69,7 +69,7 @@ def set_version(area, version): Set versions for a given area """ - print(f'---\n{now}\nstarting set-version {area}') + print(f'---\n{now}\nStarting set-version {area}') check_and_set_version(area, version)