File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 251
251
B321: ftplib
252
252
------------
253
253
254
- FTP-related funtions are being called. FTP is considered insecure. Use
254
+ FTP-related functions are being called. FTP is considered insecure. Use
255
255
SSH/SFTP/SCP or some other encrypted protocol.
256
256
257
257
+------+---------------------+------------------------------------+-----------+
@@ -386,7 +386,7 @@ def gen_blacklist():
386
386
387
387
sets .append (utils .build_conf_dict (
388
388
'telnetlib' , 'B312' , ['telnetlib.*' ],
389
- 'Telnet-related funtions are being called. Telnet is considered '
389
+ 'Telnet-related functions are being called. Telnet is considered '
390
390
'insecure. Use SSH or some other encrypted protocol.' ,
391
391
'HIGH'
392
392
))
@@ -465,7 +465,7 @@ def gen_blacklist():
465
465
466
466
sets .append (utils .build_conf_dict (
467
467
'ftplib' , 'B321' , ['ftplib.*' ],
468
- 'FTP-related funtions are being called. FTP is considered '
468
+ 'FTP-related functions are being called. FTP is considered '
469
469
'insecure. Use SSH/SFTP/SCP or some other encrypted protocol.' ,
470
470
'HIGH'
471
471
))
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ def concat_string(node, stop=None):
248
248
'''Builds a string from a ast.BinOp chain.
249
249
250
250
This will build a string from a series of ast.Str nodes wrapped in
251
- ast.BinOp nodes. Somthing like "a" + "b" + "c" or "a %s" % val etc.
251
+ ast.BinOp nodes. Something like "a" + "b" + "c" or "a %s" % val etc.
252
252
The provided node can be any participant in the BinOp chain.
253
253
254
254
:param node: (ast.Str or ast.BinOp) The node to process
You can’t perform that action at this time.
0 commit comments