Skip to content

Commit 38d5086

Browse files
Gabriel M. Dutrastamparm
authored andcommitted
Added implicit verification (#4032)
1 parent 7b5a640 commit 38d5086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlmapapi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ def main():
6363
(args, _) = apiparser.parse_args()
6464

6565
# Start the client or the server
66-
if args.server is True:
66+
if args.server:
6767
server(args.host, args.port, adapter=args.adapter, username=args.username, password=args.password)
68-
elif args.client is True:
68+
elif args.client:
6969
client(args.host, args.port, username=args.username, password=args.password)
7070
else:
7171
apiparser.print_help()

0 commit comments

Comments
 (0)