You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2019/08/09 15:21:45 UTC

svn commit: r1864818 - /comdev/reporter.apache.org/trunk/scripts/rapp/drafts.py

Author: humbedooh
Date: Fri Aug  9 15:21:44 2019
New Revision: 1864818

URL: http://svn.apache.org/viewvc?rev=1864818&view=rev
Log:
fix ts and author

Modified:
    comdev/reporter.apache.org/trunk/scripts/rapp/drafts.py

Modified: comdev/reporter.apache.org/trunk/scripts/rapp/drafts.py
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/scripts/rapp/drafts.py?rev=1864818&r1=1864817&r2=1864818&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/scripts/rapp/drafts.py (original)
+++ comdev/reporter.apache.org/trunk/scripts/rapp/drafts.py Fri Aug  9 15:21:44 2019
@@ -134,6 +134,7 @@ def forgotten(environ, user):
             else:
                 applicables = []
                 last_report  = ""
+                last_author = None
                 has_draft = False
                 ts = 0
                 for filename in drafts:
@@ -144,12 +145,14 @@ def forgotten(environ, user):
                 if has_access(user, rid) and applicables:
                     has_draft = True
                     last_report = open(os.path.join(DRAFTS_DIR, applicables[-1]), "r").read()
-                    ts = os.path.getmtime(os.path.join(DRAFTS_DIR, applicables[-1]))
+                    e, p, t, u = applicables[-1].split('-', 3)
+                    ts = int(t)
+                    last_author = u.replace('.draft', '')
                 lost[rid] = {
                     'filed': False,
                     'has_draft': has_draft,
                     'last_draft': last_report,
-                    'last_author': u.replace('.draft', ''),
+                    'last_author': last_author,
                     'draft_timestamp': ts,
                     'attach': entry['attach']
                 }