Skip to content

Commit 08f0b97

Browse files
committed
Correct some typos and sorting mistakes
1 parent 7490420 commit 08f0b97

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def formatify(instr):
154154
"""This function is an ugly hack, because something in
155155
MySQLdb/sqlalchemy goes wrong whenever there's a '%' (wildcard)
156156
character, and it tries to run it through python's string
157-
formatter. This is teribly, but it's better than being
157+
formatter. This is terrible, but it's better than being
158158
insecure. Deal by escaping the %s."""
159159
return instr.replace('%', '%%')
160160

help

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ Usage: remctl sql.mit.edu <command> <subcommand> <target> [..args..]
44
Commands:
55
account create - create a sql.mit.edu account
66
account delete - delete a sql.mit.edu account
7-
account whoami - check who the sql.mit.edu server thinks you are
87
account is-auth - check if you're authorized on the specified account
8+
account whoami - check who the sql.mit.edu server thinks you are
99
database create - create the specified database
1010
database drop - drop the specified database
11-
password set - change account password as specified
1211
password generate - generate and set a new random password
12+
password set - change account password as specified
13+
profile get - get the account's profile (name and contact address)
14+
profile set - set the account's profile
1315
help - print this help
1416
EOF

0 commit comments

Comments
 (0)