Commit 48362f36 authored by Christian Theune's avatar Christian Theune

- fixed signature fore windows (hopefully)

parent 433068f8
......@@ -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 src, dst: win32file.CreateHardLink(src, dst, None)
_os_link = lambda self, src, dst: win32file.CreateHardLink(src, dst, 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