Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miporto committed Jun 24, 2016
1 parent 6f999e5 commit e950f15
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions examples/reg.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,22 +143,22 @@ def __parse_lp_data(self, lp_type, lp_data):
stop_parser = subparsers.add_parser('compare', help='Compares specified registry subkeys or entries')
# stop_parser.add_argument('-name', action='store', required=True, help='service name')

# A delete command
# A copy command
delete_parser = subparsers.add_parser('copy', help='Copies a registry entry to a specified location in the remote '
'computer')
# delete_parser.add_argument('-name', action='copy', required=True, help='service name')

# A status command
# A export command
status_parser = subparsers.add_parser('export', help='Creates a copy of specified subkeys, entries, and values into'
'a file')
# status_parser.add_argument('-name', action='store', required=True, help='service name')

# A config command
# A import command
config_parser = subparsers.add_parser('import', help='Copies a file containing exported registry subkeys, entries, '
'and values into the remote computer\'s registry')
# config_parser.add_argument('-name', action='store', required=True, help='service name')

# A list command
# A load command
list_parser = subparsers.add_parser('load', help='Writes saved subkeys and entries back to a different subkey in '
'the registry.')

Expand All @@ -171,16 +171,16 @@ def __parse_lp_data(self, lp_type, lp_data):
'tiers')

# A change command
create_parser = subparsers.add_parser('restore', help='change a service configuration')
create_parser.add_argument('-name', action='store', required=True, help='service name')
create_parser.add_argument('-display', action='store', required=False, help='display name')
create_parser.add_argument('-path', action='store', required=False, help='binary path')
create_parser.add_argument('-service_type', action='store', required=False, help='service type')
create_parser.add_argument('-start_type', action='store', required=False, help='service start type')
create_parser.add_argument('-start_name', action='store', required=False,
help='string that specifies the name of the account under which the service should run')
create_parser.add_argument('-password', action='store', required=False,
help='string that contains the password of the account whose name was specified by the start_name parameter')
# create_parser = subparsers.add_parser('restore', help='change a service configuration')
# create_parser.add_argument('-name', action='store', required=True, help='service name')
# create_parser.add_argument('-display', action='store', required=False, help='display name')
# create_parser.add_argument('-path', action='store', required=False, help='binary path')
# create_parser.add_argument('-service_type', action='store', required=False, help='service type')
# create_parser.add_argument('-start_type', action='store', required=False, help='service start type')
# create_parser.add_argument('-start_name', action='store', required=False,
# help='string that specifies the name of the account under which the service should run')
# create_parser.add_argument('-password', action='store', required=False,
# help='string that contains the password of the account whose name was specified by the start_name parameter')

# A save command
save_parser = subparsers.add_parser('save', help='Saves a copy of specified subkeys, entries, and values of the '
Expand Down

0 comments on commit e950f15

Please sign in to comment.