Fix typo and remove default value for network creds
This commit is contained in:
parent
2c7a0c0b65
commit
ade63ae22f
2 changed files with 3 additions and 3 deletions
|
@ -394,7 +394,7 @@ def passwordsXML():
|
||||||
line1= (
|
line1= (
|
||||||
"Input the server name or IP address as indicated in your emby library paths. "
|
"Input the server name or IP address as indicated in your emby library paths. "
|
||||||
'For example, the server name: \\\\SERVER-PC\\path\\ is "SERVER-PC".'))
|
'For example, the server name: \\\\SERVER-PC\\path\\ is "SERVER-PC".'))
|
||||||
server = dialog.input("Enter the server name or IP address", settings('ipaddress'))
|
server = dialog.input("Enter the server name or IP address")
|
||||||
if not server:
|
if not server:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
@ -73,8 +73,8 @@ class VideoNodes(object):
|
||||||
# Verify the video directory
|
# Verify the video directory
|
||||||
if not xbmcvfs.exists(path):
|
if not xbmcvfs.exists(path):
|
||||||
shutil.copytree(
|
shutil.copytree(
|
||||||
src=xbmc.translatePath("special://xbmc/system/library/video/").decode('utf-8'),
|
src=xbmc.translatePath("special://xbmc/system/library/video").decode('utf-8'),
|
||||||
dst=xbmc.translatePath("special://profile/library/video/").decode('utf-8'))
|
dst=xbmc.translatePath("special://profile/library/video").decode('utf-8'))
|
||||||
xbmcvfs.exists(path)
|
xbmcvfs.exists(path)
|
||||||
|
|
||||||
# Create the node directory
|
# Create the node directory
|
||||||
|
|
Loading…
Reference in a new issue