Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Unified Diff: tools/dartium/generate_dart_vm_version.py

Issue 973193003: Changed Dartium expiration to 52 weeks (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/generate_dart_vm_version.py
diff --git a/tools/dartium/generate_dart_vm_version.py b/tools/dartium/generate_dart_vm_version.py
index 68ec2f5a55b42cc405e9e711bde03c6f0e2d252e..361317b7a25ea8efb4f54f8a0fd6045e0f80db1e 100755
--- a/tools/dartium/generate_dart_vm_version.py
+++ b/tools/dartium/generate_dart_vm_version.py
@@ -27,7 +27,7 @@ def main():
updateFile(REVISION_FILE, version_string)
- expiration_date = datetime.date.today() + datetime.timedelta(weeks=12)
+ expiration_date = datetime.date.today() + datetime.timedelta(weeks=52)
vsm 2015/03/03 23:19:54 you could also do datetime.timedelta(days=365)
terry 2015/03/04 02:24:43 Yeah that's more accurate than 52 weeks, not preci
updateFile(EXPIRATION_FILE,
"%dLL\n" % time.mktime(expiration_date.timetuple()))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698