From a81a96f71c183f52dba177a32539bd13bc1473be Mon Sep 17 00:00:00 2001
From: o355 <owen@owenthe.ninja>
Date: Mon, 27 Feb 2017 12:06:55 -0500
Subject: [PATCH] 0.3.1 is nearly ready to rumble...

---
 pyweather.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyweather.py b/pyweather.py
index ac653b2..8003302 100644
--- a/pyweather.py
+++ b/pyweather.py
@@ -419,6 +419,8 @@
         print(Fore.CYAN + "Current temperature: " + Fore.YELLOW + summary_tempf + "°F (" + summary_tempc + "°C)")
         print(Fore.CYAN + "And it feels like: " + Fore.YELLOW + current_feelsLikeF
               + "°F (" + current_feelsLikeC + "°C)")
+        print(Fore.CYAN + "Current dew point: " + Fore.YELLOW + summary_dewPointF
+              + "°F (" + summary_dewPointC + "°C)")
         if winddata == True:
             print(Fore.CYAN + "Current wind: " + Fore.YELLOW + summary_windmphstr + 
                   " mph (" + summary_windkphstr + " kph), blowing " + summary_winddir 
@@ -426,8 +428,6 @@
         else:
             print(Fore.YELLOW + "Wind data is not available for this location.")
         print(Fore.CYAN + "Current humidity: " + Fore.YELLOW + summary_humidity)
-        print(Fore.CYAN + "Current dew point: " + Fore.YELLOW + summary_dewPointF
-              + "°F (" + summary_dewPointC + "°C)")
         print(Fore.CYAN + "Current pressure: " + Fore.YELLOW + current_pressureInHg
               + " inHg (" + current_pressureMb + " mb), " + current_pressureTrend2)
         print(Fore.CYAN + "Current visibility: " + Fore.YELLOW + current_visibilityMi