Changeset 176:31fba426b261

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

fix formatting

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • StormSiren/StormConfig.py

    r142 r176  
    172172                                if(dev == "execution"): 
    173173                                        self.devices.append(ExecutionAlertDevice(exeInfo,alerts,areas)) 
     174                print self.__str__() 
    174175 
    175176        def __str__(self): 
     
    177178                str += "\n\t".join(self.__states) 
    178179 
    179                 str += "\nProxy: %i\n" % self.__proxy 
    180                 str += "\nHistory: %i\n" % self.max_history 
     180                str += "\nProxy: %s" % self.proxy 
     181                str += "\nHistory: %i" % self.max_history 
    181182                str += "\nDevices: %i\n" % len(self.devices) 
    182183