Skip to content

Commit f27b0ca

Browse files
committed
Fix some doc/rst issue
1 parent 194f3b6 commit f27b0ca

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ This queue does not allow duplicate items.
184184
>>>
185185
186186
Example usage of SQLite3 based ``SQLiteAckQueue``/``UniqueAckQ``
187-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
187+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188188
The core functions:
189189

190190
- ``get``: get from queue and mark item as unack
@@ -402,7 +402,7 @@ Explicit resource reclaim
402402

403403
For some reasons, an application may require explicit reclamation for file
404404
handles or sql connections before end of execution. In these cases, user can
405-
simply call:
405+
simply call:
406406
.. code-block:: python
407407
408408
q = Queue() # or q = persistqueue.SQLiteQueue('mypath', auto_commit=True)

scripts/publish.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
set -e
23
BASE_DIR=`pwd`
34
NAME=$(basename $BASE_DIR)
45
if [[ "$NAME" != "persist-queue" ]];then
@@ -7,4 +8,6 @@ if [[ "$NAME" != "persist-queue" ]];then
78
fi
89
python setup.py build sdist
910
python setup.py build bdist_wheel
11+
twine check ${BASE_DIR}/dist/*.tar.gz
12+
twine check ${BASE_DIR}/dist/*.whl
1013
twine upload ${BASE_DIR}/dist/*

0 commit comments

Comments
 (0)