twokey 1.0.23 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/twokey.js +4 -2
- package/package.json +1 -1
package/bin/twokey.js
CHANGED
|
@@ -495,10 +495,12 @@ function withManagedBinPath(baseEnv) {
|
|
|
495
495
|
}
|
|
496
496
|
env.PATH = parts.join(":");
|
|
497
497
|
// Remove variables that interfere with Python virtual environments.
|
|
498
|
-
//
|
|
499
|
-
//
|
|
498
|
+
// AppImage/library-loader state can make system Python import the wrong
|
|
499
|
+
// standard library or fail to load extension modules such as "_ssl".
|
|
500
500
|
delete env.PYTHONHOME;
|
|
501
501
|
delete env.PYTHONPATH;
|
|
502
|
+
delete env.LD_LIBRARY_PATH;
|
|
503
|
+
delete env.LD_PRELOAD;
|
|
502
504
|
return env;
|
|
503
505
|
}
|
|
504
506
|
|