From 76e5181cade262b86610dcc851bcb4452196ccdc Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 12 Feb 2009 21:25:08 +0100 Subject: small speedups/cleanups by moritz venn --- lib/python/Components/About.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python/Components/About.py') diff --git a/lib/python/Components/About.py b/lib/python/Components/About.py index ce1328cf..bb2d7568 100644 --- a/lib/python/Components/About.py +++ b/lib/python/Components/About.py @@ -23,7 +23,7 @@ class About: month = version[8:10] day = version[10:12] - return '-'.join(["dev", year, month, day]) + return '-'.join(("dev", year, month, day)) file.close() except IOError: pass -- cgit v1.2.3