Fix name error, found by pychecker.
diff --git a/Lib/cgitb.py b/Lib/cgitb.py
index 2602d57..200e8ee 100644
--- a/Lib/cgitb.py
+++ b/Lib/cgitb.py
@@ -193,7 +193,7 @@
 
         if self.logdir is not None:
             import os, tempfile
-            (fd, name) = tempfile.mkstemp(suffix=['.html', '.txt'][text],
+            (fd, path) = tempfile.mkstemp(suffix=['.html', '.txt'][text],
                                           dir=self.logdir)
             try:
                 file = os.fdopen(fd, 'w')