Skip to content

Commit a3dbb26

Browse files
committed
Fix boneheaded mistake
1 parent 86b7e40 commit a3dbb26

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

basc_archiver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from .sites import default_archivers
88

9-
version = '0.8.4'
9+
version = '0.8.5'
1010
_default_base_dir = './archive'
1111

1212

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name='BASC-Archiver',
21-
version='0.8.4',
21+
version='0.8.5',
2222
description='Makes a complete archive of imageboard threads including images, HTML, and JSON.',
2323
long_description=long_description,
2424
author='Antonizoon Overtwater <[email protected]>, Daniel Oaks <[email protected]>',

thread-archiver

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ from docopt import docopt
3535
import time
3636
import sys
3737

38-
from basc_archiver import _version, Options, Archiver
38+
from basc_archiver import version, Options, Archiver
3939

4040
if __name__ == '__main__':
41-
args = docopt(__doc__, version=_version)
41+
args = docopt(__doc__, version=version)
4242

4343
options = Options(args['--path'], args['--ssl'], silent=args['--silent'], verbose=args['--verbose'],
4444
delay=args['--delay'],

0 commit comments

Comments
 (0)