Skip to content

Commit 203b9d5

Browse files
committed
fixed missing import in auth, version bump
1 parent 89c2b48 commit 203b9d5

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include AUTHORS.txt
2+
include LICENSE.txt
3+
include README.rst
4+
include CHANGELOG.txt
5+
include varnish.py
6+
include bin/varnish_manager

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Simple Python interface for the Varnish management port
88

99
::
1010

11-
pip install python-varnish==0.2.0
11+
pip install python-varnish==0.2.1
1212

1313
If you are running a version of varnish older than 3.0 then install python-varnish==0.1.2 instead.
1414

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='python-varnish',
5-
version='0.2.0',
5+
version='0.2.1',
66
long_description=open('README.rst').read(),
77
description='Simple Python interface for the Varnish management port',
88
author='Justin Quick',

varnish.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
from threading import Thread
3636
from httplib import HTTPConnection
3737
from urlparse import urlparse
38+
from hashlib import sha256
3839
import logging
3940

4041

0 commit comments

Comments
 (0)