Compare commits
4 Commits
deluge-2.1
...
develop
Author | SHA1 | Date | |
---|---|---|---|
2a945de069 | |||
d0acd3e06e | |||
3565a9a817 | |||
b3d1fd79a8 |
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@ -7,6 +7,9 @@ on:
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
SETUPTOOLS_ENABLE_FEATURES: "legacy-editable"
|
||||
|
||||
jobs:
|
||||
test-linux:
|
||||
runs-on: ubuntu-20.04
|
||||
|
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
@ -36,7 +36,7 @@ jobs:
|
||||
run: |
|
||||
pip install --upgrade pip wheel
|
||||
pip install tox
|
||||
sudo apt-get install enchant
|
||||
sudo apt-get install enchant-2
|
||||
|
||||
- name: Test with tox
|
||||
env:
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Changelog
|
||||
|
||||
## unreleased
|
||||
## 2.1.1 (2022-07-10)
|
||||
|
||||
### Core
|
||||
|
||||
|
@ -682,7 +682,7 @@ class DelugeWeb(component.Component):
|
||||
|
||||
if self.base != '/':
|
||||
# Strip away slashes and serve on the base path as well as root path
|
||||
self.top_level.putChild(self.base.strip('/'), self.top_level)
|
||||
self.top_level.putChild(self.base.strip('/').encode(), self.top_level)
|
||||
|
||||
setup_translation()
|
||||
|
||||
|
Reference in New Issue
Block a user