diff --git a/datasette/utils.py b/datasette/utils.py index f6430934..e9f0a700 100644 --- a/datasette/utils.py +++ b/datasette/utils.py @@ -504,5 +504,4 @@ def link_or_copy(src, dst): try: os.link(src, dst) except OSError as e: - print('Got OSError {} linking {} to {}'.format(e, src, dst)) shutil.copyfile(src, dst)