projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c87b4df
)
Add missing % x (bug #208946, comment #2).
author
Zac Medico
<zmedico@gentoo.org>
Sat, 16 Feb 2008 09:02:39 +0000
(09:02 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 16 Feb 2008 09:02:39 +0000
(09:02 -0000)
svn path=/main/trunk/; revision=9342
pym/portage/dbapi/vartree.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index 002a9f373a977591ca76b262011509bfa81bf8ae..70397813323fb07ecb9ed98fe2cca67ebda773d9 100644
(file)
--- 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))