Changeset 490
- Timestamp:
- 03/17/07 00:03:07 (17 months ago)
- Files:
-
- 3 modified
-
branches/newnet/mucous/mucous (modified) (1 diff)
-
museek+/trunk/sources/mucous/mucous (modified) (2 diffs)
-
museek+/trunk/sources/mucous/pymucous/MucousInput.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/newnet/mucous/mucous
r488 r490 256 256 else: 257 257 os.mkdir(config_dir, 0700) 258 create_config()258 self.create_config() 259 259 260 260 -
museek+/trunk/sources/mucous/mucous
r478 r490 39 39 try: 40 40 import messages, driver 41 except :41 except Exception, error: 42 42 try: 43 43 from museek import messages, driver 44 except: 45 print "WARNING: The Museek Message-Parsing modules, messages.py and/or driver.py were not found. Please install them into your '/usr/lib/python2.X/site-packages/museek' directory, or place them in a 'museek' subdirectory of the directory that contains the mucous python script." 44 except Exception, error: 45 print "WARNING: The Museek Message-Parsing modules, messages.py and/or driver.py were not found. Please install them into your '/usr/lib/python2.X/site-packages/museek' directory, or place them in a 'museek' subdirectory of the directory that contains the mucous python script.", error 46 46 47 sys.exit() 47 48 … … 255 256 else: 256 257 os.mkdir(config_dir, 0700) 257 create_config()258 self.create_config() 258 259 259 260 -
museek+/trunk/sources/mucous/pymucous/MucousInput.py
r478 r490 1578 1578 alpha_list[rooms12] = self.mucous.ChatRooms.tickers[rooms12] 1579 1579 #if self.mucous.Config["tickers"]["tickers_enabled"] == 'yes': 1580 1580 1581 for rooms13, ticks in alpha_list.items(): 1581 1582 if rooms13 == woom: 1582 ttickers =[]1583 1583 1584 ttickers = ticks.keys() 1584 1585 if ttickers != []:
