aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch/svn.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-11-12 15:10:51 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-11-12 15:10:51 +0000
commit1bf8ea8a4f19cf9085e621ee9591eba98e94ae3f (patch)
treea734b9aaea0bbf14ef5fd18e3830eb2e89b67434 /lib/bb/fetch/svn.py
parent62e0c9065bafc92bfe897fb06ad9c2c160ef5340 (diff)
downloadbitbake-1bf8ea8a4f19cf9085e621ee9591eba98e94ae3f.tar.gz
svn.py: Fix a reference to parm
Diffstat (limited to 'lib/bb/fetch/svn.py')
-rw-r--r--lib/bb/fetch/svn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/svn.py b/lib/bb/fetch/svn.py
index f8db7b225..62c72f6c9 100644
--- a/lib/bb/fetch/svn.py
+++ b/lib/bb/fetch/svn.py
@@ -48,7 +48,7 @@ class Svn(Fetch):
ud.module = ud.parm["module"]
ud.revision = ""
- if 'rev' in parm:
+ if 'rev' in ud.parm:
ud.revision = ud.parm['rev']
ud.localfile = data.expand('%s_%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision, ud.date), d)