Fix the typo in the files

funtions should be functions,
messsages should be messages,
identifed should be identified

Change-Id: I8380b656d4337d891d86240ef3981ede5a7839e4
This commit is contained in:
zhangyanxian 2016-07-21 01:05:49 +00:00
parent f5862e96b6
commit ee6cb05538
3 changed files with 3 additions and 3 deletions

View File

@ -191,7 +191,7 @@ purposes.
B312: telnetlib
---------------
Telnet-related funtions are being called. Telnet is considered insecure. Use
Telnet-related functions are being called. Telnet is considered insecure. Use
SSH or some other encrypted protocol.
+------+---------------------+------------------------------------+-----------+

View File

@ -45,7 +45,7 @@ class BanditManager():
:param config: config options object
:type config: bandit.core.BanditConfig
:param agg_type: aggregation type
:param debug: Whether to show debug messsages or not
:param debug: Whether to show debug messages or not
:param verbose: Whether to show verbose output
:param profile_name: Optional name of profile to use (from cmd line)
:param ignore_nosec: Whether to ignore #nosec or not

View File

@ -374,7 +374,7 @@ def any_other_function_with_shell_equals_true(context, config):
return bandit.Issue(
severity=bandit.MEDIUM,
confidence=bandit.LOW,
text='Function call with shell=True parameter identifed, '
text='Function call with shell=True parameter identified, '
'possible security issue.',
lineno=context.get_lineno_for_call_arg('shell'),
)