Skip to content

Commit

Permalink
[Blindscan]
Browse files Browse the repository at this point in the history
* fix typo of last change
  • Loading branch information
jbleyel committed Dec 4, 2023
1 parent aa6e1b8 commit 1c6b3f4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Blindscan/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@
MACHINEBUILD = BoxInfo.getItem("model")
MODEL = BoxInfo.getItem("machinebuild")
IMGVER = BoxInfo.getItem("imageversion")
IMGBUILD = BoxInfo.getItem("imagebuild")
except:
from boxbranding import getImageDistro, getBrandOEM, getMachineBuild, getBoxType, getImageVersion
from boxbranding import getImageDistro, getImageBuild, getBrandOEM, getMachineBuild, getBoxType, getImageVersion
IMAGEDISTRO = getImageDistro()
BRAND = getBrandOEM()
MACHINEBUILD = getMachineBuild()
MODEL = getBoxType()
IMGVER = getImageVersion()
IMGBUILD = getImageBuild()


def root2gold(root):
Expand Down Expand Up @@ -1408,7 +1410,7 @@ def createSatellitesXMLfile(self, tp_list, save_xml_dir):
xml.append('<!--\n')
xml.append(' File created on %s\n' % (strftime("%A, %d of %B %Y, %H:%M:%S")))
xml.append(' using %s receiver running Enigma2 image, version %s,\n' % (MODEL, IMGVER))
xml.append(' build %s, with the blindscan plugin \n\n' % (()))
xml.append(' build %s, with the blindscan plugin \n\n' % (IMGBUILD))
xml.append(' Search parameters:\n')
xml.append(' %s\n' % (tuner))
xml.append(' Satellite: %s\n' % (self.sat_name))
Expand Down

0 comments on commit 1c6b3f4

Please sign in to comment.