Skip to content

Commit

Permalink
Revert to use real jaraco when available
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed May 17, 2024
1 parent e2b72d9 commit 2adb5aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ubelt/_win32_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
import sys

if sys.platform.startswith('win32'):
# try:
# import jaraco.windows.filesystem as jwfs
# except ImportError:
# Use vendored subset of jaraco.windows
from ubelt import _win32_jaraco as jwfs
try:
import jaraco.windows.filesystem as jwfs
except ImportError:
# Use vendored subset of jaraco.windows
from ubelt import _win32_jaraco as jwfs

__win32_can_symlink__ = None # type: bool | None

Expand Down

0 comments on commit 2adb5aa

Please sign in to comment.