Commit 16623fe3 authored by Fred Drake's avatar Fred Drake

_os should be os; reported by Neal Norwitz.

parent 3d32be19
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment