We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64df7ea commit d669d55Copy full SHA for d669d55
drpy/io/io.py
@@ -206,7 +206,7 @@ def download(self,savedir='./'):
206
for i,file in enumerate(self.filename):
207
url = self.server + file
208
if self.verbose:
209
- print('Downloading {} of {}: {}'.format(i,len(self.filename),url))
+ print('Downloading {} of {}: {}'.format(i+1,len(self.filename),url))
210
211
cmd = 'curl -u ' + self.username+':'+self.username+' ' + url + ' -o ' + \
212
os.path.basename(savedir+file)
0 commit comments