Skip to content

Commit

Permalink
Merge pull request #23 from rosarior/master
Browse files Browse the repository at this point in the history
Added a quick fix for the github private repository resource fetch error
  • Loading branch information
darwin committed Oct 14, 2011
2 parents 0ce1621 + b5aa794 commit 35fd606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dryapp/drydrop/app/core/vfs.py
Expand Up @@ -125,7 +125,7 @@ def fetch_resource_content(self, path):

# note: params should be url-safe, so no need to escape here
if len(params)>0:
url = url + "?" + string.join(params, "&")
url = url + "?" + "&".join(params)

response = urlfetch.fetch(url, follow_redirects=True)
if response.status_code!=200:
Expand Down

0 comments on commit 35fd606

Please sign in to comment.