Skip to content

Commit

Permalink
Merge pull request midgetspy#335 from itofzo/change_urllib2_https_github
Browse files Browse the repository at this point in the history
Change to https://github.com when used with urllib2.urlopen
  • Loading branch information
midgetspy committed Mar 20, 2012
2 parents 7a4287d + d4ebe11 commit dca129e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/pygithub/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def __repr__(self):

class BaseEndpoint(object):

BASE_URL = 'http://github.com/api/v2/xml/'
BASE_URL = 'https://github.com/api/v2/xml/'

def __init__(self, user, token, fetcher):
self.user = user
Expand Down
2 changes: 1 addition & 1 deletion sickbeard/versionChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def update(self):
Downloads the latest source tarball from github and installs it over the existing version.
"""

tar_download_url = 'http://github.com/midgetspy/Sick-Beard/tarball/'+version.SICKBEARD_VERSION
tar_download_url = 'https://github.com/midgetspy/Sick-Beard/tarball/'+version.SICKBEARD_VERSION
sb_update_dir = os.path.join(sickbeard.PROG_DIR, 'sb-update')
version_path = os.path.join(sickbeard.PROG_DIR, 'version.txt')

Expand Down

0 comments on commit dca129e

Please sign in to comment.