Skip to content

Commit 7058544

Browse files
committed
change prints
1 parent aa7e631 commit 7058544

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

api.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,13 @@ def download_depot(client, depot_id):
8888
'gid': manifest.gid,
8989
'depot_id': manifest.depot_id
9090
})
91-
print("Got manifests for ARMA3 server app ID:", ARMA3_SERVER_APP_ID)
92-
93-
for manifest in manifests:
94-
print(f"[{manifest['name']}] ID: {manifest['gid']}, Depot ID: {manifest['depot_id']}")
9591

9692
target_manifest = next((m for m in manifests if m['depot_id'] == depot_id), None)
9793
if not target_manifest:
9894
print(f"No manifest found for depot ID {depot_id}")
9995
return
10096

101-
print(f"Manifest ID: {target_manifest['gid']}, Depot ID: {target_manifest['depot_id']}")
97+
print(f"Downloading Manifest ID: {target_manifest['gid']}, Depot ID: {target_manifest['depot_id']}")
10298

10399
files_generator = cdn_client.iter_files(ARMA3_SERVER_APP_ID, branch="creatordlc", filter_func=lambda d_id, depot_info: d_id == target_manifest['depot_id'])
104100
files = list(files_generator)

0 commit comments

Comments
 (0)