[LNT] r350699 - [LNT] Fix typo in a comment
Danila Malyutin via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 9 02:10:58 PST 2019
Author: danilaml
Date: Wed Jan 9 02:10:57 2019
New Revision: 350699
URL: http://llvm.org/viewvc/llvm-project?rev=350699&view=rev
Log:
[LNT] Fix typo in a comment
Modified:
lnt/trunk/lnt/lnttool/main.py
Modified: lnt/trunk/lnt/lnttool/main.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/lnttool/main.py?rev=350699&r1=350698&r2=350699&view=diff
==============================================================================
--- lnt/trunk/lnt/lnttool/main.py (original)
+++ lnt/trunk/lnt/lnttool/main.py Wed Jan 9 02:10:57 2019
@@ -247,7 +247,7 @@ def action_send_daily_report(instance_pa
latest = session.query(ts.Run).\
order_by(ts.Run.start_time.desc()).limit(1).first()
- # If we found a run, use it's start time (rounded up to the next
+ # If we found a run, use its start time (rounded up to the next
# hour, so we make sure it gets included).
if latest:
date = latest.start_time + datetime.timedelta(hours=1)
More information about the llvm-commits
mailing list