diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-02-16 09:02:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-02-16 09:02:39 +0000 |
commit | 139044962784776fc1651c8e779e4f3c45d13874 (patch) | |
tree | 46241b61226ebf3e53b448522a8d82c5268a6b2c | |
parent | c87b4df5770b2cc1d887aba2231168de4d790299 (diff) | |
download | portage-139044962784776fc1651c8e779e4f3c45d13874.tar.gz portage-139044962784776fc1651c8e779e4f3c45d13874.tar.bz2 portage-139044962784776fc1651c8e779e4f3c45d13874.zip |
Add missing % x (bug #208946, comment #2).
svn path=/main/trunk/; revision=9342
-rw-r--r-- | pym/portage/dbapi/vartree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 002a9f373..703978133 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1601,7 +1601,7 @@ class dblink(object): for x in preserve_paths: print "injecting %s into %s" % (x, srcroot) if not os.path.exists(os.path.join(destroot, x.lstrip(os.sep))): - print "%s does not exist so can't be preserved" + print "%s does not exist so can't be preserved" % x missing_paths.append(x) continue mydir = os.path.join(srcroot, os.path.dirname(x).lstrip(os.sep)) |