# HG changeset patch # User Adrien Di Mascio # Date 1249454044 -7200 # Node ID bffb0e64736c4f6f88412771f226225328d1c538 # Parent ade3196741707710a7d560905b68207db5a1dad4 [i18ncubicweb] fix stupid NameError with mkdtemp diff -r ade319674170 -r bffb0e64736c devtools/devctl.py --- a/devtools/devctl.py Tue Aug 04 19:36:22 2009 +0200 +++ b/devtools/devctl.py Wed Aug 05 08:34:04 2009 +0200 @@ -259,7 +259,7 @@ from logilab.common.fileutils import ensure_fs_mode from logilab.common.shellutils import globfind, find, rm from cubicweb.common.i18n import extract_from_tal, execute - tempdir = tempdir.mkdtemp() + tempdir = tempfile.mkdtemp() potfiles = [join(I18NDIR, 'static-messages.pot')] print '-> extract schema messages.' schemapot = join(tempdir, 'schema.pot')