]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
_os should be os; reported by Neal Norwitz.
authorFred Drake <fdrake@acm.org>
Sat, 13 Oct 2001 16:00:52 +0000 (16:00 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 13 Oct 2001 16:00:52 +0000 (16:00 +0000)
Lib/webbrowser.py

index dac40f62c2920058a30c6b148700bffed2e4c326..e766771190f9eb111c036dd4b27470943d046cce 100644 (file)
@@ -179,7 +179,7 @@ class Grail:
         import tempfile
         tempdir = os.path.join(tempfile.gettempdir(),
                                ".grail-unix")
-        user = pwd.getpwuid(_os.getuid())[0]
+        user = pwd.getpwuid(os.getuid())[0]
         filename = os.path.join(tempdir, user + "-*")
         maybes = glob.glob(filename)
         if not maybes: