Skip to content

bug if PYTHONPATH contains multiple directories #258

@sdementen

Description

@sdementen

If PYTHONPATH contains multiple directories separated by ";" the RunCommand is not correct.

    RunCommand = "python -c ""import sys; sys.path.append(r'" & PYTHONPATH & "'); " & Command & """ "

can be replaced by

    RunCommand = "python -c ""import sys; sys.path.extend(r'" & PYTHONPATH & ".split(";")'); " & Command & """ "

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions