diff options
| author | antarus <antarus@gentoo.org> | 2007-04-01 04:52:01 +0000 |
|---|---|---|
| committer | antarus <antarus@gentoo.org> | 2007-04-01 04:52:01 +0000 |
| commit | 81d66c88e25d5648ef2dbba1d5f818a4bce6bf00 (patch) | |
| tree | 9c8c5b8574392883c56913c28d1ab30fe7e947bf /trunk/src | |
| parent | 3bc929f25c4e992ddfd8cf3769df6330ed07fbdb (diff) | |
| download | gentoolkit-81d66c88e25d5648ef2dbba1d5f818a4bce6bf00.tar.gz | |
remove string usage as it's obsolete
svn path=/; revision=377
Diffstat (limited to 'trunk/src')
| -rw-r--r-- | trunk/src/pkg-clean/pkg-clean | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/trunk/src/pkg-clean/pkg-clean b/trunk/src/pkg-clean/pkg-clean index c18f1c9..abe0159 100644 --- a/trunk/src/pkg-clean/pkg-clean +++ b/trunk/src/pkg-clean/pkg-clean @@ -8,7 +8,6 @@ import commands import re import sys -import string import time import os @@ -25,7 +24,7 @@ pkg_file_list = pkg_files.splitlines() pkg_hash = {} for time_pkg_pair in pkg_file_list: (pkg_time, pkg) = time_pkg_pair.split() - pkg_time = string.atoi(pkg_time) + pkg_time = int(pkg_time) # This covers developer trees with not-accepted categories tmp_name = re.match(r'/var/db/pkg/(.*/.*)/.*', pkg) if not tmp_name: continue @@ -76,12 +75,12 @@ for pkg_core in pkg_hash.keys(): ins = open(tmpname) for j in ins.readlines(): - idx = string.atoi(j) + idx = int(j) if idx == 0: break full_path = pkg_hash[pkg_core][idx-1][PKG] - ebuild = string.replace(full_path, "/var/db/pkg/", "") + ebuild = full_path.replace("/var/db/pkg/", "") if not assume_yes: params = "dialog --backtitle \"" + ebuild + "\" " + \ |
