Changeset 2325

Show
Ignore:
Timestamp:
11/26/07 05:40:24 (14 months ago)
Author:
markybob
Message:

make sure simplerss does not load

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • tags/deluge-0.5.6.96/src/plugins.py

    r2312 r2325  
    6161                    mod = __import__(modname, globals(), locals(), ['']) 
    6262                    if 'deluge_init' in dir(mod): 
    63                         if modname != "TorrentPieces": 
     63                        if (modname != "TorrentPieces") and (modname != "Simple RSS"): 
    6464                            print "Initialising plugin", modname 
    6565                            try: 
  • trunk/src/plugins.py

    r2309 r2325  
    6161                    mod = __import__(modname, globals(), locals(), ['']) 
    6262                    if 'deluge_init' in dir(mod): 
    63                         if modname != "TorrentPieces": 
     63                        if (modname != "TorrentPieces") and (modname != "Simple RSS"): 
    6464                            print "Initialising plugin", modname 
    6565                            try: