
noreply at mythtv
May 31, 2012, 8:33 PM
Post #1 of 2
(79 views)
Permalink
|
|
Ticket #10783: Indentation Error (dataheap.py)
|
|
#10783: Indentation Error (dataheap.py) --------------------------------------+------------------------ Reporter: fedora@… | Owner: wagnerrp Type: Bug Report - General | Status: new Priority: minor | Milestone: unknown Component: Bindings - Python | Version: 0.25-fixes Severity: medium | Keywords: Ticket locked: 0 | --------------------------------------+------------------------ My build complains about and indentation error, minor problem I think with recent commit. Patch below fixes the build. {{{ diff --git a/mythtv/bindings/python/MythTV/dataheap.py b/mythtv/bindings/python/MythTV/dataheap.py index 6cb01df..dd832ba 100644 --- a/mythtv/bindings/python/MythTV/dataheap.py +++ b/mythtv/bindings/python/MythTV/dataheap.py @@ -439,7 +439,7 @@ class Recorded( CMPRecord, DBDataWrite ): if role=='Writer': role = 'Author' metadata.people.append(OrdDict((('name',name), ('job',role)))) - for arttype in ['coverart', 'fanart', 'banner']: +# for arttype in ['coverart', 'fanart', 'banner']: # art = getattr(self.artwork, arttype) # if art: # metadata.images.append(OrdDict((('type',arttype), ('filename',art)))) }}} -- Ticket URL: <http://code.mythtv.org/trac/ticket/10783> MythTV <http://code.mythtv.org/trac> MythTV Media Center _______________________________________________ mythtv-commits mailing list mythtv-commits [at] mythtv http://www.mythtv.org/mailman/listinfo/mythtv-commits
|