From 72af75d1bddc63787eda705b7d0eb88856b05288 Mon Sep 17 00:00:00 2001
From: Antonio Ospite <ao2@ao2.it>
Date: Thu, 19 Mar 2015 10:39:04 +0100
Subject: [PATCH] Move the comment about the default seasons order

Put the comment right before the relevant code statement.
---
 season_math_test.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/season_math_test.py b/season_math_test.py
index 1501604..1d193a9 100755
--- a/season_math_test.py
+++ b/season_math_test.py
@@ -12,12 +12,11 @@
 
 # The code assumes meteorological seasons.
 # See http://en.wikipedia.org/wiki/Season
-#
-# Default seasons order is the one for the Northern hemisphere.
 
 seasons_norhtern = ["Winter", "Spring", "Summer", "Autumn"]
 seasons_southern = ["Summer", "Autumn", "Winter", "Spring"]
 
+# Default seasons order is the one for the Northern hemisphere
 seasons = seasons_norhtern
 
 months = ["January", "February", "March", "April", "May", "June", "July",
-- 
2.1.4