Skip to content
This repository has been archived by the owner on Dec 26, 2020. It is now read-only.

Commit

Permalink
Fixed type error, fixed unicode errors, removed the 'update' command …
Browse files Browse the repository at this point in the history
…(use the native package manager instead)
  • Loading branch information
Paradoxis committed Mar 25, 2019
1 parent 74772ba commit 35107f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,18 @@ def finalize_options(self):

def run(self):
try:
self.status('Removing previous builds')
self.status('Removing previous builds...')
rmtree(os.path.join(here, 'dist'))
except OSError:
pass

self.status('Building Source and Wheel (universal) distribution')
self.status('Building Source and Wheel (universal) distribution...')
os.system('{0} setup.py sdist bdist_wheel'.format(sys.executable))

self.status('Uploading the package to PyPi via Twine')
self.status('Uploading the package to PyPi via Twine...')
os.system('twine upload dist/*')

self.status('Pushing git tags')
self.status('Pushing git tags...')
os.system('git tag v{0}'.format(about['__version__']))
os.system('git push --tags')

Expand Down
2 changes: 1 addition & 1 deletion stegcracker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.0.0'
__version__ = '2.0.1'
__url__ = 'https://github.com/Paradoxis/StegCracker'
3 changes: 1 addition & 2 deletions stegcracker/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ def main():
args.add_argument('wordlist', action='store', nargs='?', default='/usr/share/wordlists/rockyou.txt')
args.add_argument('-o', '--output', default=None)
args.add_argument('-t', '--threads', type=int, default=16)
args.add_argument('-c', '--chunk-size', default=256)
args.add_argument('-c', '--chunk-size', type=int, default=256)
args.add_argument('-q', '--quiet', '--stfu', action='store_true', default=False)
args.add_argument('-u', '--update', action='store_true', default=False)
args.add_argument('-V', '--verbose', action='store_true', default=False)
args = args.parse_args()

Expand Down

0 comments on commit 35107f3

Please sign in to comment.