Closed jaraco closed 8 years ago
Originally reported by: Shlomi Kushchi (Bitbucket: shlomi_kushchi, GitHub: shlomi_kushchi)
hi.
you have a bug in 3.1.1
#!python from jaraco.windows import filesystem
causes:
#!python C:\Python27\lib\site-packages\jaraco\windows\api\filesystem.py in <module>() 3 CreateSymbolicLink = ctypes.windll.kernel32.CreateSymbolicLinkW 4 CreateSymbolicLink.argtypes = ( ----> 5 ctypes.wintypes.ctypes.wintypes.LPWSTR, 6 ctypes.wintypes.LPWSTR, 7 ctypes.wintypes.DWORD, AttributeError: 'module' object has no attribute 'ctypes'
line 5 should be: ctypes.wintypes.LPWSTR,
Original comment by Jason R. Coombs (Bitbucket: jaraco, GitHub: jaraco):
Released as 3.1.2. Thanks for the report.
Digest copy pasta. Fixes #4.
Originally reported by: Shlomi Kushchi (Bitbucket: shlomi_kushchi, GitHub: shlomi_kushchi)
hi.
you have a bug in 3.1.1
causes:
line 5 should be: ctypes.wintypes.LPWSTR,