Skip to content

Commit 54764c8

Browse files
authored
Merge pull request RustPython#4339 from DimitrisJim/ssl_android
Fix build error for ssl on android.
2 parents 3dd786f + 29eaab0 commit 54764c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/src/ssl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@ mod _ssl {
13601360
let root = Path::new(CERT_DIR);
13611361
if !root.is_dir() {
13621362
return Err(vm.new_exception_msg(
1363-
vm.ctx.exceptions.file_not_found_error.clone(),
1363+
vm.ctx.exceptions.file_not_found_error.to_owned(),
13641364
CERT_DIR.to_string(),
13651365
));
13661366
}

0 commit comments

Comments
 (0)