From f168c73dc8f44046af256b59f4d1edd2dbb540cf Mon Sep 17 00:00:00 2001 From: Patrick Kanzler Date: Wed, 16 Aug 2023 23:17:03 +0200 Subject: [PATCH] authors can be taken from version control better --- src/escpos/constants.py | 2 +- src/escpos/escpos.py | 2 +- src/escpos/exceptions.py | 2 +- src/escpos/printer.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/escpos/constants.py b/src/escpos/constants.py index 803d9b4..24e3b11 100644 --- a/src/escpos/constants.py +++ b/src/escpos/constants.py @@ -5,7 +5,7 @@ This module contains constants that are described in the esc/pos-documentation. Since there is no definitive and unified specification for all esc/pos-like printers the constants could later be moved to `capabilities` as in `escpos-php by @mike42 `_. -:author: `Manuel F Martinez `_ and others +:author: python-escpos developers :organization: Bashlinux and `python-escpos `_ :copyright: Copyright (c) 2012-2017 Bashlinux and python-escpos :license: MIT diff --git a/src/escpos/escpos.py b/src/escpos/escpos.py index 50af002..237d960 100644 --- a/src/escpos/escpos.py +++ b/src/escpos/escpos.py @@ -4,7 +4,7 @@ This module contains the abstract base class :py:class:`Escpos`. -:author: `Manuel F Martinez `_ and others +:author: python-escpos developers :organization: Bashlinux and `python-escpos `_ :copyright: Copyright (c) 2012-2017 Bashlinux and python-escpos :license: MIT diff --git a/src/escpos/exceptions.py b/src/escpos/exceptions.py index c96a202..b578bf1 100644 --- a/src/escpos/exceptions.py +++ b/src/escpos/exceptions.py @@ -19,7 +19,7 @@ Result/Exit codes: - `210` = Configuration syntax error :py:exc:`~escpos.exceptions.ConfigSyntaxError` - `220` = Configuration section not found :py:exc:`~escpos.exceptions.ConfigSectionMissingError` -:author: `Manuel F Martinez `_ and others +:author: python-escpos developers :organization: Bashlinux and `python-escpos `_ :copyright: Copyright (c) 2012-2017 Bashlinux and python-escpos :license: MIT diff --git a/src/escpos/printer.py b/src/escpos/printer.py index d326b7f..89f9ea3 100644 --- a/src/escpos/printer.py +++ b/src/escpos/printer.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- """This module contains the implementations of abstract base class :py:class:`Escpos`. -:author: `Manuel F Martinez `_ and others +:author: python-escpos developers :organization: Bashlinux and `python-escpos `_ :copyright: Copyright (c) 2012-2017 Bashlinux and python-escpos :license: MIT