Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2019-03-03 16:57:53 +01:00
parent 4c68583a8d
commit 38676a9d2c
2 changed files with 8 additions and 0 deletions

View File

@@ -70,6 +70,14 @@ def rdata(file, rower=rrower()):
result = rrdata(file + '.gz', rower=rower)
except IOError:
result = 0
except TypeError:
try:
result = rrdata(file)
except IOError:
try:
result = rrdata(file+'.gz', rower=rower)
except IOError:
result = 0
return result

Binary file not shown.