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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tiny-dlna
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: a tiny DLNA receiver
5
5
  Home-page: https://github.com/mitnk/tiny-dlna
6
6
  Author: mitnk
@@ -40,7 +40,7 @@ Play video on the DLNA device having "TV" in its name.
40
40
 
41
41
  setup(
42
42
  name='tiny-dlna',
43
- version='0.7.1',
43
+ version='0.7.2',
44
44
  description='a tiny DLNA receiver',
45
45
  long_description=DESC,
46
46
  url='https://github.com/mitnk/tiny-dlna',
@@ -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(path_file, path_link)
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):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tiny-dlna
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: a tiny DLNA receiver
5
5
  Home-page: https://github.com/mitnk/tiny-dlna
6
6
  Author: mitnk
File without changes
File without changes