1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-12 21:22:17 +00:00

Py3: fixed remaining errors (hidden due to skipped tests)

Ref #75
This commit is contained in:
spl0k 2018-01-16 22:19:24 +01:00
parent c36d1813ee
commit 420003dfc1
2 changed files with 3 additions and 2 deletions

View File

@ -73,7 +73,7 @@ def user_profile(uid, user):
@me_or_uuid
def update_clients(uid, user):
clients_opts = dict()
for key, value in request.form.iteritems():
for key, value in request.form.items():
if '_' not in key:
continue
parts = key.split('_')

View File

@ -24,6 +24,7 @@ class TranscodingTestCase(ApiTestBase):
self.skipTest('Logging/atexit error')
super(TranscodingTestCase, self).setUp()
self._patch_client()
FolderManager.add('Folder', 'tests/assets/folder')
scanner = Scanner()