An environment for sshuttle subprocesses. See get_path().
()
| 189 | |
| 190 | |
| 191 | def get_env(): |
| 192 | """An environment for sshuttle subprocesses. See get_path().""" |
| 193 | env = { |
| 194 | 'PATH': get_path(), |
| 195 | 'LC_ALL': "C", |
| 196 | } |
| 197 | return env |
| 198 | |
| 199 | |
| 200 | def get_path(): |