summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/getopt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py
index 46aa702..1b835a5 100644
--- a/Lib/getopt.py
+++ b/Lib/getopt.py
@@ -117,7 +117,7 @@ def gnu_getopt(args, shortopts, longopts = []):
if shortopts.startswith('+'):
shortopts = shortopts[1:]
all_options_first = True
- elif os.getenv("POSIXLY_CORRECT"):
+ elif os.environ.get("POSIXLY_CORRECT"):
all_options_first = True
else:
all_options_first = False