Hey there guys, it's me again

I'm having an issue with this one mod:
MERGE/SCAN ERROR: M.O.E. - Main Quest Delayer.espTraceback (most recent call last): File "C:\Games\Bethesda\Oblivion\Base\Mopy\basher.py", line 5335, in Execute patchFile.scanLoadMods(SubProgress(progress,0.2,0.8)) #try to speed this up! File "C:\Games\Bethesda\Oblivion\Base\Mopy\bosh.py", line 17062, in scanLoadMods patcher.scanModFile(modFile,nullProgress) File "C:\Games\Bethesda\Oblivion\Base\Mopy\bosh.py", line 25077, in scanModFile if record.eid.lower() == tweak.key:AttributeError: 'NoneType' object has no attribute 'lower'
The mod in question is: "M.O.E. - Main Quest Delayer.esp" and can be downloaded from here: http://www.tesnexus.com/downloads/file.php?id=19949
Inspecting the mod with TES4Edit I was able to find the cause: that mod has a global record flagged as deleted, and hence it has no editor id. That part of the Bash code assumes that all globals always have a valid editor id.
I would suggest to add a check for the 'deleted' flag there just to skip the record for that patcher if the flag is set. For now, I can just disable the mod before rebuuilding the bashed patch!

Cheers!