diff options
Diffstat (limited to 'utils/check_cfc/check_cfc.py')
-rwxr-xr-x | utils/check_cfc/check_cfc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/check_cfc/check_cfc.py b/utils/check_cfc/check_cfc.py index c6ab9abf23528..7a739f46e3081 100755 --- a/utils/check_cfc/check_cfc.py +++ b/utils/check_cfc/check_cfc.py @@ -237,7 +237,7 @@ def run_step(command, my_env, error_on_failure): def get_temp_file_name(suffix): """Get a temporary file name with a particular suffix. Let the caller be - reponsible for deleting it.""" + responsible for deleting it.""" tf = tempfile.NamedTemporaryFile(suffix=suffix, delete=False) tf.close() return tf.name |