tiny-dlna 0.7.1__tar.gz → 0.7.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/PKG-INFO +1 -1
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/setup.py +1 -1
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna/tiny_cli.py +2 -3
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna.egg-info/PKG-INFO +1 -1
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/README.md +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/setup.cfg +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna/__init__.py +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna/tiny_render.py +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna/tiny_ssdp.py +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna/tiny_xmls.py +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna.egg-info/SOURCES.txt +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna.egg-info/dependency_links.txt +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna.egg-info/entry_points.txt +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna.egg-info/requires.txt +0 -0
- {tiny-dlna-0.7.1 → tiny-dlna-0.7.2}/tiny_dlna.egg-info/top_level.txt +0 -0
|
@@ -3,7 +3,6 @@ import json
|
|
|
3
3
|
import logging
|
|
4
4
|
import os.path
|
|
5
5
|
import random
|
|
6
|
-
import shutil
|
|
7
6
|
import signal
|
|
8
7
|
import socket
|
|
9
8
|
import threading
|
|
@@ -193,8 +192,8 @@ def create_link(path_file):
|
|
|
193
192
|
os.unlink(path_link)
|
|
194
193
|
|
|
195
194
|
path_abs = os.path.abspath(path_file)
|
|
196
|
-
os.symlink(
|
|
197
|
-
logger.info(f'created softlink: {path_link}')
|
|
195
|
+
os.symlink(path_abs, path_link)
|
|
196
|
+
logger.info(f'created softlink: {path_abs} --> {path_link}')
|
|
198
197
|
|
|
199
198
|
|
|
200
199
|
def get_control_url(args):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|