diff --git a/bom_rrd2.py b/bom_rrd2.py index 8354639..1e9f438 100755 --- a/bom_rrd2.py +++ b/bom_rrd2.py @@ -32,7 +32,10 @@ rows = lounge[2][::-1] try: lounge_temp = int(rows[1][0]) except TypeError: - lounge_temp = int(rows[2][0]) + try: + lounge_temp = int(rows[2][0]) + except TypeError: + lounge_temp = "N" bom_icons = { 'sunny': 'SUNNY.JPG',