Removed rogue print statement, refs #141

This commit is contained in:
Simon Willison 2017-12-08 08:08:00 -08:00
commit 61e3c5a1e9
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52

View file

@ -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)