Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
finesse
pykat
Commits
468da438
Commit
468da438
authored
Apr 01, 2020
by
Michele Valentini
Browse files
fixed a bug in which the pwd and IFO arguments were swapped when given to _run
parent
f42d319a
Changes
1
Hide whitespace changes
Inline
Side-by-side
pykat/parallel.py
View file @
468da438
...
...
@@ -110,8 +110,8 @@ class parakat(object):
self
.
_results
.
append
(
self
.
_lview
.
apply_async
(
func
,
""
.
join
(
kat
.
generateKatScript
()),
kat_IFO
,
os
.
getcwd
(),
*
args
,
**
kwargs
))
os
.
getcwd
(),
kat_IFO
,
*
args
,
**
kwargs
))
if
kat_IFO
is
not
None
:
kat
.
IFO
.
_IFO__kat
=
kat
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment