URI: 
       tadd directory to download path - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 69d983fcd5501bbe4afc61b741f0fc7c5851d373
   DIR parent 53273b7d4020d68f070a68f35f1488daca6dbd34
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Thu, 29 Oct 2015 00:15:13 +0100
       
       add directory to download path
       
       Diffstat:
         M contrib/make_download               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/contrib/make_download b/contrib/make_download
       t@@ -24,8 +24,8 @@ files = {
        }
        
        for k, n in files.items():
       -    path = "binaries/%s"%n
       -    link = "https://download.electrum.org/%s"%n
       +    path = "dist/%s"%n
       +    link = "https://download.electrum.org/%s/%s"%(version,n)
            if not os.path.exists(path):
                os.system("wget -q %s -O %s" % (link, path))
            if not os.path.getsize(path):