Skip to content

Commit

Permalink
optimising
Browse files Browse the repository at this point in the history
  • Loading branch information
meeb committed May 24, 2024
1 parent 972ca03 commit 4d62de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_distill/publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def publish_dir(backend, stdout, verify=True, parallel_publish=1, ignore_remote_
def _publish_file(backend, f, verify, stdout):
remote_f = backend.remote_path(f)
stdout(f'Publishing: {f} -> {remote_f}')
backend.upload_file(f, backend.remote_path(f))
backend.upload_file(f, remote_f)
if verify:
url = backend.remote_url(f)
stdout(f'Verifying: {url}')
Expand Down

0 comments on commit 4d62de8

Please sign in to comment.