Skip to content

Commit

Permalink
raw.github.com -> raw.githubusercontent.com
Browse files Browse the repository at this point in the history
jacktheripper51 -> gsteph
  • Loading branch information
gsteph committed May 1, 2014
1 parent f0b0538 commit b712ee9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion misc/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ If you want to change the destination directory, click "Choose Destination".

Enjoy :)

Downloaded from https://github.com/jacktheripper51/groove-dl
Downloaded from https://github.com/gsteph/groove-dl
By George Stephanos <[email protected]>
10 changes: 4 additions & 6 deletions python/gui.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
version = "0.97.7"
version = "0.97.8"
import sys
import os
import shutil
Expand Down Expand Up @@ -303,13 +303,11 @@ def _Close(self, event):
if l > 0:
if wx.MessageDialog(self, "There are currently %d active downloads. Are you sure you want to cancel them and exit ?" % l, "Active downloads", wx.YES_NO|wx.CENTRE).ShowModal() == wx.ID_NO:
return
print "BWAH"
for d in self.downloads:
d["thread"].cancelled = True
config = ConfigParser.RawConfigParser()
config.add_section("groove-dl")
config.set("groove-dl", "dest", dest)
print "BWAH"
config.set("groove-dl", "format", format)
config.write(open(os.path.join(conf, "settings.ini"), "wb"))
sys.stdout.close()
Expand Down Expand Up @@ -457,10 +455,10 @@ def update(self):
wx.PostEvent(self.frame, evtExecFunc(func=SetStatus, attr1="Checking for updates..."))
conn = None
try:
conn = httplib.HTTPSConnection("raw.github.com")
conn.request("GET", "/jacktheripper51/groove-dl/gh-pages/versionsf")
conn = httplib.HTTPSConnection("raw.githubusercontent.com")
conn.request("GET", "/gsteph/groove-dl/gh-pages/versionsf")
r = conn.getresponse()
assert r.status != 404
assert r.status == 200
self.new = r.read()
except:
wx.PostEvent(self.frame, evtExecFunc(func=SetStatus, attr1="Checking for updates failed"))
Expand Down

0 comments on commit b712ee9

Please sign in to comment.