We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e45d225 commit 9203abbCopy full SHA for 9203abb
1 file changed
funscript_editor/__main__.py
@@ -15,7 +15,7 @@ def main():
15
args = parser.parse_args()
16
17
if os.getcwd() not in os.environ['PATH']:
18
- os.environ['PATH'] += os.getcwd() + os.sep
+ os.environ['PATH'] = os.getcwd() + os.sep + os.environ['PATH']
19
20
if not args.generator: show_editor()
21
else: generate_funscript(args.input, args.start, args.output)
0 commit comments