Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cspell.dict/cpython.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ numer
orelse
pathconfig
patma
platstdlib
posonlyarg
posonlyargs
prec
Expand Down
2 changes: 1 addition & 1 deletion crates/stdlib/src/syslog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod syslog {
use libc::{LOG_AUTHPRIV, LOG_CRON, LOG_PERROR};

fn get_argv(vm: &VirtualMachine) -> Option<PyStrRef> {
if let Some(argv) = vm.state.settings.argv.first()
if let Some(argv) = vm.state.config.settings.argv.first()
&& !argv.is_empty()
{
return Some(
Expand Down
Loading
Loading