Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gridtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bob
gridtk
Commits
5d2ce6e1
Commit
5d2ce6e1
authored
Jul 10, 2017
by
André Anjos
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gridtk/models.py
gridtk/models.py
+1
-1
No files found.
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
.
ite
rite
ms
()])
+
">: "
+
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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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