Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
I
install.api
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Script
install.api
Commits
1f0e4658
Commit
1f0e4658
authored
Mar 12, 2020
by
金凯强
🎨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
编码修复
parent
7ab99820
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ssh_tools.py
app/utils/ssh_tools.py
+2
-2
No files found.
app/utils/ssh_tools.py
View file @
1f0e4658
...
...
@@ -36,8 +36,8 @@ class SSHConnect():
raise
RuntimeError
(
'请先连接'
)
# 执行命令并获取执行结果
stdin
,
stdout
,
stderr
=
self
.
ssh
.
exec_command
(
command
)
out
=
stdout
.
read
()
err
=
stderr
.
read
()
out
=
stdout
.
read
()
.
decode
()
err
=
stderr
.
read
()
.
decode
()
return
out
,
err
...
...
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