Changeset 115:3285597f9cd8

Show
Ignore:
Timestamp:
11/08/08 02:35:50 (3 years ago)
Author:
chris
Branch:
unix
Message:

add exception handler to avoid xmppy being required.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • JabberAlertDevice.py

    r100 r115  
    4040""" 
    4141 
    42 import xmpp 
    4342import logging 
     43 
     44try: 
     45        import xmpp 
     46except ImportError: 
     47        pass 
     48 
    4449 
    4550from AlertDevice import *