mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Fix capitalization in error message
Signed-off-by: Padraic Fanning <fanninpm@miamioh.edu>
This commit is contained in:
@@ -149,7 +149,7 @@ impl PyFunction {
|
||||
kwargs.set_item(name, value, vm)?;
|
||||
} else {
|
||||
return Err(
|
||||
vm.new_type_error(format!("Got an unexpected keyword argument '{}'", name))
|
||||
vm.new_type_error(format!("got an unexpected keyword argument '{}'", name))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user