summaryrefslogtreecommitdiffstats
path: root/bin/md5check.py
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2007-01-25 17:25:47 +0000
committerMarius Mauch <genone@gentoo.org>2007-01-25 17:25:47 +0000
commit13368e7dbf44ec8474673c7bbb51df3ae55b9a9e (patch)
treed081c9ed02ce89413cd8cdc2d740d25814fe52c6 /bin/md5check.py
parentac7b281c8f72e400c253b3db49529bfcc698b37c (diff)
downloadportage-13368e7dbf44ec8474673c7bbb51df3ae55b9a9e.tar.gz
portage-13368e7dbf44ec8474673c7bbb51df3ae55b9a9e.tar.bz2
portage-13368e7dbf44ec8474673c7bbb51df3ae55b9a9e.zip
Namespace sanitizing, step 4
svn path=/main/trunk/; revision=5784
Diffstat (limited to 'bin/md5check.py')
-rwxr-xr-xbin/md5check.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/md5check.py b/bin/md5check.py
index 359a0bf00..4cc6d86f9 100755
--- a/bin/md5check.py
+++ b/bin/md5check.py
@@ -10,7 +10,7 @@ try:
except ImportError:
sys.path.insert(0, "/usr/lib/portage/pym")
import portage
-import portage_util
+import portage.util
def cstrip(mystr,mychars):
newstr = ""
@@ -68,7 +68,7 @@ for mycpv in hugelist:
continue
if mybn not in md5sums.keys():
- portage_util.writemsg("Missing md5sum: %s in %s\n" % (mybn, mycpv))
+ portage.util.writemsg("Missing md5sum: %s in %s\n" % (mybn, mycpv))
else:
if mybn in md5_list.keys():
if (md5_list[mybn]["MD5"] != md5sums[mybn]["MD5"]) or \