Skip to content

Commit

Permalink
output element of chunk adjusted for masking
Browse files Browse the repository at this point in the history
  • Loading branch information
oPromessa committed Sep 22, 2018
1 parent ea356dc commit 1990b89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/FlickrUploadr.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,8 +787,7 @@ def uploadFileX(self, lock, running, mutex, filelist, ctotal, cur):
"""

for i, filepic in enumerate(filelist):
logging.warning('===Current element of Chunk: [%s][%s]',
i, filepic)
logging.warning('===Element of Chunk:[%s] file:[%s]', i, filepic)
self.uploadFile(lock, filepic)

# no need to check for
Expand Down Expand Up @@ -2392,7 +2391,8 @@ def remove_useless_sets_table(self):
unusedsets = cur.fetchall()

for row in unusedsets:
NP.niceprint('Removing set [{!s}] ({!s}).'

NP.niceprint('Removing id:[{!s}] set:[{!s}]'
.format(NP.strunicodeout(row[0]),
NP.strunicodeout(row[1])),
verbosity=1)
Expand Down Expand Up @@ -2940,7 +2940,7 @@ def maddAlbumsMigrate(self, lock, running, mutex, filelist, c_total, cur):
"""

for i, afile in enumerate(filelist):
logging.warning('===Current element of Chunk: [%s][%s]', i, afile)
logging.warning('===Element of Chunk:[%s] file:[%s]', i, afile)

# afile[0] = files_id
# afile[1] = path
Expand Down

0 comments on commit 1990b89

Please sign in to comment.