[pypy-commit] buildbot sort-nightly-directories: simplify

mattip noreply at buildbot.pypy.org
Thu Mar 21 05:19:29 CET 2013


Author: Matti Picus <matti.picus at gmail.com>
Branch: sort-nightly-directories
Changeset: r751:a60dfee5eb4b
Date: 2013-03-20 21:18 -0700
http://bitbucket.org/pypy/buildbot/changeset/a60dfee5eb4b/

Log:	simplify

diff --git a/bot2/pypybuildbot/pypylist.py b/bot2/pypybuildbot/pypylist.py
--- a/bot2/pypybuildbot/pypylist.py
+++ b/bot2/pypybuildbot/pypylist.py
@@ -106,10 +106,7 @@
     def __init__(self, filePath):
         self.filename = filePath.basename()
         self.filePath = filePath
-        try:
-            self.parse_filename()
-        except ValueError:
-            self.last_mod_time = 0
+        self.parse_filename()
 
     def parse_filename(self):
         if self.filename == 'trunk':


More information about the pypy-commit mailing list