Fixed init

This commit is contained in:
Joshua Harlow 2012-03-17 21:22:33 -07:00
parent bc7d385956
commit 8e6f54c1b7

View File

@ -43,9 +43,9 @@ class Downloader(object):
class GitDownloader(Downloader):
def __init__(self, uri, store_where, **kargs):
def __init__(self, uri, store_where, branch):
Downloader.__init__(self, uri, store_where)
self.branch = kargs.get('branch')
self.branch = branch
def download(self):
dirsmade = list()