You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by se...@apache.org on 2015/09/22 01:34:08 UTC

svn commit: r1704442 - /comdev/projects.apache.org/scripts/committee_info.py

Author: sebb
Date: Mon Sep 21 23:34:07 2015
New Revision: 1704442

URL: http://svn.apache.org/viewvc?rev=1704442&view=rev
Log:
Oops, need to use join to create the full path to the file

Modified:
    comdev/projects.apache.org/scripts/committee_info.py

Modified: comdev/projects.apache.org/scripts/committee_info.py
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/scripts/committee_info.py?rev=1704442&r1=1704441&r2=1704442&view=diff
==============================================================================
--- comdev/projects.apache.org/scripts/committee_info.py (original)
+++ comdev/projects.apache.org/scripts/committee_info.py Mon Sep 21 23:34:07 2015
@@ -47,7 +47,7 @@ def file_mtime(filename):
 def get_url_if_newer(url, dir, name):
     path=join(dir,name)
     fileTime = file_mtime(path)
-    check = dir+".checked_"+name
+    check = join(dir,".checked_"+name)
     if fileTime > 0:
         checkTime = file_mtime(check)
         now = time.time()