Skip to content

Commit

Permalink
Version 1.22
Browse files Browse the repository at this point in the history
Remove debug output
  • Loading branch information
adameste committed Feb 9, 2018
1 parent bc5dc19 commit 3c40ef1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion anidbcli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import anidbcli.operations as operations

@click.group(name="anidbcli")
@click.version_option(version="1.21", prog_name="anidbcli")
@click.version_option(version="1.22", prog_name="anidbcli")
@click.option("--recursive", "-r", is_flag=True, default=False, help="Scan folders for files recursively.")
@click.option("--extensions", "-e", help="List of file extensions separated by , character.")
@click.option("--quiet", "-q", is_flag=True, default=False, help="Display only warnings and errors.")
Expand Down
2 changes: 0 additions & 2 deletions anidbcli/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,6 @@ def Process(self, file):
os.makedirs(os.path.dirname(tmp_tgt + file_extension))
except:
pass
print(f)
print(tmp_tgt + file_extension)
os.rename(f, tmp_tgt + file_extension)
self.output.success("File renamed to: \"%s\"" % (tmp_tgt + file_extension))
except Exception as e:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='anidbcli',
version='1.21',
version='1.22',
keywords='Anidb UDP API CLI client ed2k rename mylist',
description='Simple CLI for managing your anime collection using AniDB UDP API.',
long_description=long_description,
Expand Down

0 comments on commit 3c40ef1

Please sign in to comment.