Skip to content

Commit

Permalink
remove hardcoded string from addon updater
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Szczerba committed Jan 22, 2017
1 parent cdc29c8 commit 4d3fd67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/AddonGithubUpdater.py
Expand Up @@ -19,7 +19,7 @@ def isUpdateAvailable(self):
local=f.readlines()[-1]
f.close()
try:
remote=urllib2.urlopen("https://raw.githubusercontent.com/LightberryEu/plugin.program.hyperion.configurator/master/changelog.txt").readlines()[-1]
remote=urllib2.urlopen("https://raw.githubusercontent.com/"+self.githubOrg+"/"+self.githubRepo+"/master/changelog.txt").readlines()[-1]
except Exception, e:
pDialog.close()
return false
Expand Down

0 comments on commit 4d3fd67

Please sign in to comment.