aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-06-22 21:19:42 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2024-06-22 21:19:42 -0400
commit408cf4d7719de63b8175bd9b69a7484bc6dba1f8 (patch)
treeeb6ec27c12186e38a97673ec9a1332853aa44175 /setup.py
parent265fafbf1b3d468d4087a5229ca4bad0a651db23 (diff)
parent80e39a8fc7de105510cbbdca8507f2a4b8c9e01d (diff)
Update upstream source from tag 'upstream/1.27.1'
Update to upstream version '1.27.1' with Debian dir 786b4d48b451c0be3e4e14b3739202bb3965566e
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index ee66f5f..5f9dbc8 100644
--- a/setup.py
+++ b/setup.py
@@ -9,8 +9,8 @@ import warnings
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
- with open(path, encoding="utf-8") as file:
- return file.read()
+ with open(path, encoding="utf-8") as fp:
+ return fp.read()
def check_file(fname):