summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/setbuilder.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-04-15 09:48:18 +1000
committerChris Johns <chrisj@rtems.org>2013-04-15 09:48:42 +1000
commit8508944647267bbda89a389da7e41a2088f2bdb7 (patch)
treed78e4c34b291d365710f021ef3bb18843c459c6e /source-builder/sb/setbuilder.py
parentAdd --no-download to disable the downloader. (diff)
downloadrtems-source-builder-8508944647267bbda89a389da7e41a2088f2bdb7.tar.bz2
PR 2115 - Fixed the exception on no 'what'.
Diffstat (limited to '')
-rw-r--r--source-builder/sb/setbuilder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source-builder/sb/setbuilder.py b/source-builder/sb/setbuilder.py
index aef6102..41cce62 100644
--- a/source-builder/sb/setbuilder.py
+++ b/source-builder/sb/setbuilder.py
@@ -84,7 +84,7 @@ class buildset:
for f in files:
self._output(f)
except IOError, err:
- raise error.general('copying tree: %s: %s' % (what, str(err)))
+ raise error.general('copying tree: %s -> %s: %s' % (src, dst, str(err)))
except distutils.errors.DistutilsFileError, err:
raise error.general('copying tree: %s' % (str(err)))