from presence import Presence
def handleInterrupt(sig, frame):
from presence import Presence
def handleInterrupt(sig, frame):
- for entry in os.listdir(config['paths']['fifodir']):
- fullpath = "%s/%s" % (config['paths']['fifodir'], entry)
+ for entry in os.listdir(fifo_dir):
+ fullpath = "%s/%s" % (fifo_dir, entry)
if stat.S_ISFIFO(os.stat(fullpath).st_mode):
logging.info("Creating presence for %s..." % entry)
presences.append( Presence(entry, fullpath) )
if stat.S_ISFIFO(os.stat(fullpath).st_mode):
logging.info("Creating presence for %s..." % entry)
presences.append( Presence(entry, fullpath) )