summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/svn.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/svn.py')
-rw-r--r--bitbake/lib/bb/fetch2/svn.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py
index cbf929e9c5..9a779d2448 100644
--- a/bitbake/lib/bb/fetch2/svn.py
+++ b/bitbake/lib/bb/fetch2/svn.py
@@ -178,12 +178,12 @@ class Svn(FetchMethod):
178 178
179 return revision 179 return revision
180 180
181 def _sortable_revision(self, url, ud, d): 181 def sortable_revision(self, url, ud, d, name):
182 """ 182 """
183 Return a sortable revision number which in our case is the revision number 183 Return a sortable revision number which in our case is the revision number
184 """ 184 """
185 185
186 return self._build_revision(url, ud, d) 186 return False, self._build_revision(url, ud, d)
187 187
188 def _build_revision(self, url, ud, d): 188 def _build_revision(self, url, ud, d):
189 return ud.revision 189 return ud.revision