summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/bb/fetch/svk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/fetch/svk.py b/lib/bb/fetch/svk.py
index d863ccb6e..ce64cde60 100644
--- a/lib/bb/fetch/svk.py
+++ b/lib/bb/fetch/svk.py
@@ -67,10 +67,10 @@ class Svk(Fetch):
svkroot = ud.host + ud.path
- svkcmd = "svk co -r {%s} %s/%s" % (date, svkroot, ud.module)
+ svkcmd = "svk co -r {%s} %s/%s" % (ud.date, svkroot, ud.module)
if ud.revision:
- svkcmd = "svk co -r %s/%s" % (ud.revision, svkroot, ud.module)
+ svkcmd = "svk co -r %s %s/%s" % (ud.revision, svkroot, ud.module)
# create temp directory
localdata = data.createCopy(d)