[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/Blobs/Blob.py - fixed
signature fore windows (hopefully)
Christian Theune
ct at gocept.com
Fri Mar 9 10:56:06 EST 2007
Log message for revision 73122:
- fixed signature fore windows (hopefully)
Changed:
U ZODB/trunk/src/ZODB/Blobs/Blob.py
-=-
Modified: ZODB/trunk/src/ZODB/Blobs/Blob.py
===================================================================
--- ZODB/trunk/src/ZODB/Blobs/Blob.py 2007-03-09 15:49:14 UTC (rev 73121)
+++ ZODB/trunk/src/ZODB/Blobs/Blob.py 2007-03-09 15:56:06 UTC (rev 73122)
@@ -43,7 +43,7 @@
# 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
More information about the Zodb-checkins
mailing list