Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DellEMC Z9332f] Remove duplicate ipmihelper.py script #6536

Merged
merged 1 commit into from
Jan 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_ipmitool_raw_output(args):
proc.wait()
if not proc.returncode:
result = stdout.rstrip('\n')
except:
except EnvironmentError:
pass

for i in result.split():
Expand Down Expand Up @@ -180,7 +180,7 @@ def _get_ipmitool_fru_print(self):
proc.wait()
if not proc.returncode:
result = stdout.decode('utf-8').rstrip('\n')
except:
except EnvironmentError:
pass

return result
Expand Down Expand Up @@ -253,7 +253,7 @@ def get_fru_data(self, offset, count=1):
proc.wait()
if not proc.returncode:
result = stdout.decode('utf-8').rstrip('\n')
except:
except EnvironmentError:
is_valid = False

if (not result) or (not is_valid):
Expand Down

This file was deleted.