This code is never called.

This commit is contained in:
Steven Black 2016-12-11 12:21:38 -05:00
parent 962010ddcc
commit d089583a45

View File

@ -276,18 +276,6 @@ def getUpdateURLsFromFile(source):
return retURLs
# End Update Logic
def getUpdateURLFromFile(source):
pathToUpdateFile = os.path.join(settings["datapath"], source, settings["sourcedatafilename"])
if os.path.exists(pathToUpdateFile):
with open(pathToUpdateFile, "r") as updateFile:
updateData = json.load(updateFile)
return [updateData["url"]]
printFailure("Warning: Can't find the update file for source " + source + "\n" +
"Make sure that there's a file at " + pathToUpdateFile)
return None
# End Update Logic
# File Logic
def createInitialFile():
mergeFile = tempfile.NamedTemporaryFile()