From 61e3c5a1e904a6e1cbee86ba1494b5cb4b5820cf Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 8 Dec 2017 08:08:00 -0800 Subject: [PATCH] Removed rogue print statement, refs #141 --- datasette/utils.py | 1 - 1 file changed, 1 deletion(-) 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)