diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2009-03-03 18:57:46 +0100 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2009-03-03 18:57:46 +0100 |
| commit | a5b628b1eb1c2ccdd68d7ea0f57bbb4a31c25c83 (patch) | |
| tree | 99c2076d9722b68a8b8fe2ee110f633e38c1f0ce /lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py | |
| parent | f8399204b2ce53dfd2c394f9d67b204356f2d40a (diff) | |
| download | enigma2-a5b628b1eb1c2ccdd68d7ea0f57bbb4a31c25c83.tar.gz enigma2-a5b628b1eb1c2ccdd68d7ea0f57bbb4a31c25c83.zip | |
- properly ignore transponders without values for tsid/onid in the diseqc tester
- add some log file output for pids_failed case (real tsid/onid and expected tsid/onid)
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py b/lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py index a4793949..bb4df74a 100644 --- a/lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py +++ b/lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py @@ -78,6 +78,14 @@ class ResultParser: text += " ==> " text += str(transponder[0]) text += "\n" + if reason == "pids_failed": + text += "(tsid, onid): " + text += str(transponder[3]['real']) + text += "(read from sat) != " + text += str(transponder[3]['expected']) + text += "(read from file)" + text += "\n" + text += "\n" if countsuccessful > 0: text += "\n" text += "Successfully tuned transponders' previous planes:\n" |
