We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aea663 commit b8cb848Copy full SHA for b8cb848
userland/utilities/env.py
@@ -81,7 +81,7 @@ def python_userland_env(opts, args):
81
if not prog_args:
82
for name, value in env.items():
83
print(f"{name}={value}", end="\0" if opts.null else "\n")
84
- return
+ return 0
85
86
if opts.chdir:
87
try:
@@ -97,3 +97,5 @@ def python_userland_env(opts, args):
97
except OSError as e:
98
print(e, file=sys.stderr)
99
return 126 if isinstance(e, FileNotFoundError) else 127
100
+
101
0 commit comments