Changes in obi commands

This commit is contained in:
Celine Mercier
2016-04-15 16:59:21 +02:00
parent 2aafecc3b5
commit eddd19a245
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ cpdef CompressedFile uopen(str name, mode='r'):
try:
f = urlopen(name)
except ValueError:
except:
f = open(name,mode)
c = CompressedFile(f)