Skip to content

Commit

Permalink
Grammar fix
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Raineri <[email protected]>
  • Loading branch information
mraineri committed Jul 8, 2022
1 parent a45c447 commit 0735a41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ usage: redfishMockupCreate.py [-h] --user USER --password PASSWORD --rhost
[--Copyright COPYRIGHT]
[--description DESCRIPTION] [--quiet]
A tool to walk a Redfish a service and create a mockup from all resources
A tool to walk a Redfish service and create a mockup from all resources
required arguments:
--user USER, -u USER The user name for authentication
Expand Down
2 changes: 1 addition & 1 deletion redfishMockupCreate.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def main():
"""

# Get the input arguments
argget = argparse.ArgumentParser( description = "A tool to walk a Redfish a service and create a mockup from all resources" )
argget = argparse.ArgumentParser( description = "A tool to walk a Redfish service and create a mockup from all resources" )
argget.add_argument( "--user", "-u", type = str, required = True, help = "The user name for authentication" )
argget.add_argument( "--password", "-p", type = str, required = True, help = "The password for authentication" )
argget.add_argument( "--rhost", "-r", type = str, required = True, help = "The IP address (and port) of the Redfish service" )
Expand Down

0 comments on commit 0735a41

Please sign in to comment.