possible to get this basic homer utility to be able to do a 3x4 grid? and also add in the arcsoft player, play dvd, and a few more plugins? It is AWESOME, but I keep changing what I want on the basic home (since I have to have it) and it would be nice to have everything able to be done so quickly!!!!
I tried to use fmarcia python script and I get the the following error:
C:\Documents and Settings\Owner>"C:\Program Files\Team MediaPortal\MediaPortal\skin\Black & White 1080\BasicHomer.py"
Traceback (most recent call last):
File "C:\Program Files\Team MediaPortal\MediaPortal\skin\Black & White 1080\BasicHomer.py", line 226, in <module>
if not home.has_key(x + 1):
AttributeError: 'dict' object has no attribute 'has_key'
That section of code is below:
# normalize 'home'
newhome = {}
for x in range(12):
if not home.has_key(x + 1): <<-- this is line 226 that is having problems
newhome[x + 1] = None
else:
newhome[x + 1] = home[x + 1]
home = newhome
Can someone please help me? All I did was download, extract and execute with all default settings. I didn't even change anything in the script before executing just to make sure it worked properly first.