mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-03-09 22:35:07 +08:00
revert logger newline for cleaner look
This commit is contained in:
parent
996847799f
commit
417c0ccd9e
1 changed files with 4 additions and 4 deletions
|
@ -204,15 +204,15 @@ def cross_seed():
|
||||||
dest += file
|
dest += file
|
||||||
categories.append(category)
|
categories.append(category)
|
||||||
if args.dry_run == 'dry_run':
|
if args.dry_run == 'dry_run':
|
||||||
logger.dryrun('\n - Not Moving %s to %s', src, dest)
|
logger.dryrun('Not Moving %s to %s', src, dest)
|
||||||
else:
|
else:
|
||||||
shutil.move(src, dest)
|
shutil.move(src, dest)
|
||||||
logger.info('\n - Moving %s to %s', src, dest)
|
logger.info('Moving %s to %s', src, dest)
|
||||||
else:
|
else:
|
||||||
if args.dry_run == 'dry_run':
|
if args.dry_run == 'dry_run':
|
||||||
logger.dryrun('\n - {} not found in torrents.'.format(t_name))
|
logger.dryrun('{} not found in torrents.'.format(t_name))
|
||||||
else:
|
else:
|
||||||
logger.info('\n - {} not found in torrents.'.format(t_name))
|
logger.info('{} not found in torrents.'.format(t_name))
|
||||||
|
|
||||||
numcategory = Counter(categories)
|
numcategory = Counter(categories)
|
||||||
if args.dry_run == 'dry_run':
|
if args.dry_run == 'dry_run':
|
||||||
|
|
Loading…
Reference in a new issue