You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((int(vInfo['vHeight']) >=720andconfig.getTivoHeight>=720) or
(int(vInfo['vWidth']) >=1280andconfig.getTivoWidth>=1280)):
data['showingBits'] ='4096'
I believe getTivoHeight and getTivoWidth should be function calls like so:
if ((int(vInfo['vHeight']) >=720andconfig.getTivoHeight(tsn) >=720) or
(int(vInfo['vWidth']) >=1280andconfig.getTivoWidth(tsn) >=1280)):
data['showingBits'] ='4096'
The text was updated successfully, but these errors were encountered:
Lines 216-220:
I believe
getTivoHeight
andgetTivoWidth
should be function calls like so:The text was updated successfully, but these errors were encountered: