1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-17 06:24:12 -04:00

Avoid deprecation warning introduced in Python-2.6.

This commit is contained in:
Witold Filipczyk 2008-12-06 18:07:07 +01:00 committed by Witold Filipczyk
parent 5755137630
commit 90779b1985

View File

@ -1,4 +1,9 @@
#!/usr/bin/env python
HAS_HASHLIB = False
try:
import hashlib
HAS_HASHLIB = True
except:
import md5
import cgi
@ -8,6 +13,9 @@ if form.has_key("file"):
plik = form["file"]
length = 0
if plik.file:
if HAS_HASHLIB:
dig = hashlib.md5()
else:
dig = md5.new()
while 1:
data = plik.file.read(1000000)