Skip to content

Commit

Permalink
Fix boneheaded mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielOaks committed Jan 27, 2015
1 parent 86b7e40 commit a3dbb26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion basc_archiver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .sites import default_archivers

version = '0.8.4'
version = '0.8.5'
_default_base_dir = './archive'


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='BASC-Archiver',
version='0.8.4',
version='0.8.5',
description='Makes a complete archive of imageboard threads including images, HTML, and JSON.',
long_description=long_description,
author='Antonizoon Overtwater <[email protected]>, Daniel Oaks <[email protected]>',
Expand Down
4 changes: 2 additions & 2 deletions thread-archiver
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ from docopt import docopt
import time
import sys

from basc_archiver import _version, Options, Archiver
from basc_archiver import version, Options, Archiver

if __name__ == '__main__':
args = docopt(__doc__, version=_version)
args = docopt(__doc__, version=version)

options = Options(args['--path'], args['--ssl'], silent=args['--silent'], verbose=args['--verbose'],
delay=args['--delay'],
Expand Down

0 comments on commit a3dbb26

Please sign in to comment.