Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
software
gridtk
Commits
5d2ce6e1
Commit
5d2ce6e1
authored
Jul 10, 2017
by
André Anjos
💬
Browse files
Improve py3 compatibility
parent
f6b57466
Pipeline
#11227
passed with stages
in 6 minutes and 54 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
gridtk/models.py
View file @
5d2ce6e1
...
...
@@ -323,7 +323,7 @@ class Job(Base):
grid_opt
=
self
.
get_arguments
()
if
grid_opt
:
# add additional information about the job at the end
command_line
=
"<"
+
","
.
join
([
"%s=%s"
%
(
key
,
value
)
for
key
,
value
in
grid_opt
.
iter
items
()])
+
">: "
+
command_line
command_line
=
"<"
+
","
.
join
([
"%s=%s"
%
(
key
,
value
)
for
key
,
value
in
grid_opt
.
items
()])
+
">: "
+
command_line
if
self
.
exec_dir
is
not
None
:
command_line
+=
"; [Executed in directory: '%s']"
%
self
.
exec_dir
...
...
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