From 808ac867cf2b67d907f8ec9ca440f472525f8ef1 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Sun, 6 Jan 2008 18:26:02 +0000 Subject: [PATCH] Fix day names which were off by one (buildbot uses 0 for monday). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/buildbot/config/include/defs.xml | 28 +++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/build/buildbot/config/include/defs.xml b/build/buildbot/config/include/defs.xml index 98e14a9e02..100314c170 100644 --- a/build/buildbot/config/include/defs.xml +++ b/build/buildbot/config/include/defs.xml @@ -596,13 +596,13 @@ if [ -x test_gui ]; then ./test_gui; fi - 0 - 1 - 2 - 3 - 4 - 5 - 6 + 0 + 1 + 2 + 3 + 4 + 5 + 6 @@ -610,13 +610,13 @@ if [ -x test_gui ]; then ./test_gui; fi - sunday - monday - tuesday - wednesday - thursday - friday - saturday + monday + tuesday + wednesday + thursday + friday + saturday + sunday -- 2.45.2