diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index fdd6d0a..e9ef2fb 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,8 +24,9 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Version and platform:** - - OS: [e.g. Windows 10 or macOS 10.15] + - OS: [e.g. Windows 10 64-bit or macOS 10.15] - Syncplay version and build type: [e.g. Syncplay 1.6.9 portable] + - Media player and version: [e.g. VLC 3.0.16 32-bit] **Additional context** diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d4c638..f5ee818 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,7 +82,7 @@ jobs: - name: Install Python dependencies run: | - pip3 install -U setuptools wheel pip + pip3 install -U setuptools==60.* wheel pip pip3 install twisted[tls] appnope requests certifi pip3 install shiboken2==5.15.2 pyside2==5.15.2 pip3 install altgraph modulegraph macholib diff --git a/syncplay/utils.py b/syncplay/utils.py index 77c4f46..034a625 100755 --- a/syncplay/utils.py +++ b/syncplay/utils.py @@ -383,7 +383,7 @@ def getListAsMultilineString(pathArray): def convertMultilineStringToList(multilineString): - return str.split(multilineString, "\n") if multilineString else "" + return str.split(multilineString, "\n") if multilineString else [] def playlistIsValid(files):