Show
Ignore:
Timestamp:
11/26/08 03:40:55 (3 years ago)
Author:
cfreeze@…
Branch:
CAP_1.1
Message:

clean up the execution device to actually be usable on the commandline

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • StormSiren/WeatherAlert.py

    r175 r177  
    6363 
    6464        def getText(self): 
    65                 str = self.headline + "\n\n" 
     65                str = self.headline + " (" + self.getAreas() + ")\n\n" 
    6666                str     += " Issued: " + self.issued + "\n" 
    6767                str += "Expires: " + self.expires + "\n" 
     
    8080 
    8181        def getAreas(self): 
    82                 str = "(" 
    83                 str += string.join(self.areas,',') 
    84                 str += ")" 
     82                str = string.join(self.areas,',') 
    8583                return str 
    8684