diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-09-08 15:14:07 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-09-08 15:14:07 +0100 |
commit | 04b85116143037ad446011c828a22257fa74f626 (patch) | |
tree | c258627e22e56097a4cfd73ae8ab95ef0e69a56c /bitbake/lib/bb | |
parent | 3341e47b52f9038894d6600b8702a331c3806af5 (diff) | |
download | poky-04b85116143037ad446011c828a22257fa74f626.tar.gz |
bitbake/fetch/git: fix try_premirror() definition .Method takes 4 parameters.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 938e0c08ba..58ffdd1ec1 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py | |||
@@ -90,7 +90,7 @@ class Git(Fetch): | |||
90 | return True | 90 | return True |
91 | return False | 91 | return False |
92 | 92 | ||
93 | def try_premirror(self, d, ud): | 93 | def try_premirror(self, u, ud, d): |
94 | if os.path.exists(ud.clonedir): | 94 | if os.path.exists(ud.clonedir): |
95 | return False | 95 | return False |
96 | 96 | ||