8000 Merge pull request #180 from satels/master · kived/python-for-android@6fcce61 · GitHub
[go: up one dir, main page]

Skip to content
  • Commit 6fcce61

    Browse files
    committed
    Merge pull request kivy#180 from satels/master
    Fix UnicodeDecodeError on build.py
    2 parents c3e8878 + 1928722 commit 6fcce61

    File tree

    1 file changed

    +4
    -0lines changed

    1 file changed

    +4
    -0
    lines changed

    src/build.py

    Lines changed: 4 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -206,6 +206,10 @@ def make_package(args):
    206206

    207207
    args.numeric_version = str(version_code)
    208208

    209+
    args.name = args.name.decode('utf-8')
    210+
    if args.icon_name:
    211+
    args.icon_name = args.icon_name.decode('utf-8')
    212 48B3 +
    209213
    versioned_name = args.name.replace(' ', '').replace('\'', '') + '-' + args.version
    210214

    211215
    # Android SDK rev14 needs two ant execs (ex: debug installd) and new build.xml

    0 commit comments

    Comments
     (0)
    0