Merge pull request #401 from Foaly/feature/cleanup

Removed a todo.
This commit is contained in:
Patrick Kanzler 2020-05-26 21:34:34 +02:00 committed by GitHub
commit 0a8477a888
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -13,3 +13,4 @@ csoft2k <csoft2k@hotmail.com>
Sergio Pulgarin <sergio.pulgarin@gmail.com> Sergio Pulgarin <sergio.pulgarin@gmail.com>
reck31 <rakesh.gunduka@gmail.com> reck31 <rakesh.gunduka@gmail.com>
Alex Debiasio <alex.debiasio@thinkin.io> <alex.debiasio@studenti.unitn.it> Alex Debiasio <alex.debiasio@thinkin.io> <alex.debiasio@studenti.unitn.it>
Maximilian Wagenbach <maximilian.wagenbach@native-instruments.de>

View File

@ -1,6 +1,7 @@
#!/bin/sh #!/bin/sh
GENLIST=$(git shortlog -s -n | cut -f2 | sort -f) GENLIST=$(git shortlog -s -n | cut -f2 | sort -f)
GENLIST_W_MAIL=$(git shortlog -s -e -n | cut -f2 | sort -f)
AUTHORSFILE="$(dirname $0)/../AUTHORS" AUTHORSFILE="$(dirname $0)/../AUTHORS"
TEMPAUTHORSFILE="/tmp/python-escpos-authorsfile" TEMPAUTHORSFILE="/tmp/python-escpos-authorsfile"
@ -12,7 +13,9 @@ if [ "$#" -eq 1 ]
echo "\nNew authorsfile:\n" echo "\nNew authorsfile:\n"
cat $TEMPAUTHORSFILE cat $TEMPAUTHORSFILE
echo "\nUsing diff on files...\n" echo "\nUsing diff on files...\n"
diff -q --from-file $AUTHORSFILE $TEMPAUTHORSFILE diff --suppress-common-lines -b --from-file $AUTHORSFILE $TEMPAUTHORSFILE
echo "Authors with mail addresses:\n"
echo "$GENLIST_W_MAIL"
else else
echo "$GENLIST">$AUTHORSFILE echo "$GENLIST">$AUTHORSFILE
fi fi

View File

@ -661,8 +661,6 @@ class Escpos(object):
be attempted. Note however, that not all models can do a partial cut. See the documentation of be attempted. Note however, that not all models can do a partial cut. See the documentation of
your printer for details. your printer for details.
.. todo:: Check this function on TM-T88II.
:param mode: set to 'PART' for a partial cut. default: 'FULL' :param mode: set to 'PART' for a partial cut. default: 'FULL'
:param feed: print and feed before cutting. default: true :param feed: print and feed before cutting. default: true
:raises ValueError: if mode not in ('FULL', 'PART') :raises ValueError: if mode not in ('FULL', 'PART')