# HG changeset patch # User Jeff Hammel # Date 1413509130 25200 # Node ID 02aec49585ab4302937bdc359f0c355778aaceb4 # Parent 7f910ce4da043589be936d41ed7610626a712efa dont pass -d flag; i dont know why diff -r 7f910ce4da04 -r 02aec49585ab python/dlna.py --- a/python/dlna.py Sat Sep 06 07:59:16 2014 -0700 +++ b/python/dlna.py Thu Oct 16 18:25:30 2014 -0700 @@ -54,7 +54,7 @@ os.write(fd, config) os.close(fd) - command = [dlna, '-f', name, '-d', '-p', str(options.port)] + command = [dlna, '-f', name, '-p', str(options.port)] print (subprocess.list2cmdline(command)) subprocess.check_call(command)