summaryrefslogtreecommitdiffstats
path: root/bin/archive-conf
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-20 11:47:45 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-20 11:47:45 +0000
commit199228d412c83e00f0c4af7ba34f166a891b4e87 (patch)
tree8aba71db4ea0e3b6539eccaf1dc0fd9e3920fca1 /bin/archive-conf
parentcf4c50ffa68ce110c40ae3926d60b241bbe230c2 (diff)
downloadportage-199228d412c83e00f0c4af7ba34f166a891b4e87.tar.gz
portage-199228d412c83e00f0c4af7ba34f166a891b4e87.tar.bz2
portage-199228d412c83e00f0c4af7ba34f166a891b4e87.zip
Update syntax of numbers for compatibility with Python 3.
(2to3-3.1 -f numliterals -nw ${FILES}) svn path=/main/trunk/; revision=14292
Diffstat (limited to 'bin/archive-conf')
-rwxr-xr-xbin/archive-conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/archive-conf b/bin/archive-conf
index 8a028f9b0..96c2ea1a8 100755
--- a/bin/archive-conf
+++ b/bin/archive-conf
@@ -42,7 +42,7 @@ except ImportError:
f = open(filename, 'rb')
blocksize=32768
data = f.read(blocksize)
- size = 0L
+ size = 0
sum = md5.new()
while data:
sum.update(data)