Skip to content

Commit 18ba7db

Browse files
committed
Revert metavar for query
1 parent 1477b49 commit 18ba7db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nxc/protocols/mssql/proto_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def proto_args(parser, parents):
88
mssql_parser.add_argument("--mssql-timeout", help="SQL server connection timeout", type=int, default=5)
99

1010
qgroup = mssql_parser.add_mutually_exclusive_group()
11-
qgroup.add_argument("-q", "--query", dest="mssql_query", metavar="SQL", type=str, help="execute the specified query against the mssql db")
11+
qgroup.add_argument("-q", "--query", dest="mssql_query", metavar="QUERY", type=str, help="execute the specified query against the mssql db")
1212
qgroup.add_argument("--database", nargs="?", const=True, metavar="NAME", help="list databases or list tables for NAME")
1313

1414
dgroup = mssql_parser.add_mutually_exclusive_group()

0 commit comments

Comments
 (0)