PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /proc/self/root/proc/self/root/proc/self/root/lib64/python3.9/site-packages/borg/
Server: Linux popus.webrserver.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
IP: 172.245.40.66
Choose File :

Url:
Dir : //proc/self/root/proc/self/root/proc/self/root/lib64/python3.9/site-packages/borg/__main__.py

import sys
import os

# On windows loading the bundled libcrypto dll fails if the folder
# containing the dll is not in the search path. The dll is shipped
# with python in the "DLLs" folder, so let's add this folder
# to the path. The folder is always in sys.path, get it from there.
if sys.platform.startswith('win32'):
    # Keep it an iterable to support multiple folder which contain "DLLs".
    dll_path = (p for p in sys.path if 'DLLs' in os.path.normpath(p).split(os.path.sep))
    os.environ['PATH'] = os.pathsep.join(dll_path) + os.pathsep + os.environ['PATH']


from borg.archiver import main
main()