From ade63ae22fb665ea7d9686e923a776c05ca100ba Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Mon, 4 Jan 2016 23:06:47 -0600 Subject: [PATCH] Fix typo and remove default value for network creds --- resources/lib/utils.py | 2 +- resources/lib/videonodes.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lib/utils.py b/resources/lib/utils.py index 3c2df45a..aca6b790 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -394,7 +394,7 @@ def passwordsXML(): line1= ( "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".')) - 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: return diff --git a/resources/lib/videonodes.py b/resources/lib/videonodes.py index 8a20c886..8cb20d64 100644 --- a/resources/lib/videonodes.py +++ b/resources/lib/videonodes.py @@ -73,8 +73,8 @@ class VideoNodes(object): # Verify the video directory if not xbmcvfs.exists(path): shutil.copytree( - src=xbmc.translatePath("special://xbmc/system/library/video/").decode('utf-8'), - dst=xbmc.translatePath("special://profile/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')) xbmcvfs.exists(path) # Create the node directory