Commit d8a3b4d1 authored by Sidnei da Silva's avatar Sidnei da Silva

- Arguments were backwards.

parent 48362f36
......@@ -43,7 +43,7 @@ class Blob(Persistent):
# Binding this to an attribute allows overriding it in the unit tests
if sys.platform == 'win32':
_os_link = lambda self, src, dst: win32file.CreateHardLink(src, dst, None)
_os_link = lambda self, src, dst: win32file.CreateHardLink(dst, src, None)
else:
_os_link = os.link
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment