Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Felix Seibert
xtreemfs_client
Commits
b204673b
Commit
b204673b
authored
Feb 26, 2018
by
Felix Seibert
Browse files
adding str() within print statements
parent
8a602714
Changes
1
Hide whitespace changes
Inline
Side-by-side
xtreemfs_client/OSDManager.py
View file @
b204673b
...
...
@@ -240,9 +240,9 @@ class OSDManager(object):
if
process
[
2
]
!=
0
:
errored_deletions
.
append
(
process
[
0
])
print
(
"errored command: "
)
print
(
"command: "
+
process
[
0
])
print
(
"stdoud: "
+
process
[
1
][
0
])
print
(
"stderr: "
+
process
[
1
][
1
])
print
(
"command: "
+
str
(
process
[
0
])
)
print
(
"stdoud: "
+
str
(
process
[
1
][
0
])
)
print
(
"stderr: "
+
str
(
process
[
1
][
1
])
)
print
(
"retcode: "
+
str
(
process
[
2
]))
if
len
(
errored_deletions
)
==
0
:
...
...
Write
Preview
Supports
Markdown
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