You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gr...@apache.org on 2004/01/16 05:50:15 UTC

cvs commit: httpd-python/lib/python/mod_python apache.py

grisha      2004/01/15 20:50:15

  Modified:    lib/python/mod_python apache.py
  Log:
  small but significant typo
  
  Revision  Changes    Path
  1.80      +2 -2      httpd-python/lib/python/mod_python/apache.py
  
  Index: apache.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/apache.py,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- apache.py	8 Oct 2003 21:04:11 -0000	1.79
  +++ apache.py	16 Jan 2004 04:50:15 -0000	1.80
  @@ -468,7 +468,7 @@
           if not file or (path and not filter(file.startswith, path)):
               # there is a script by this name already imported, but it's in
               # a different directory, therefore it's a different script
  -            mtime, oldtime = 0, -1
  +            mtime, oldmtime = 0, -1
           elif autoreload: 
               oldmtime = module.__dict__.get("__mtime__", 0)
               mtime = module_mtime(module)