forked from pool/python-exrex
24 lines
591 B
Diff
24 lines
591 B
Diff
|
|
From 09a1ef0962268460f66084a992fee1aff77dc141 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Sebastian Wagner <wagner@cert.at>
|
||
|
|
Date: Thu, 25 Feb 2021 21:03:56 +0100
|
||
|
|
Subject: [PATCH] setup.py: declare encoding as utf-8
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
the ellipsis (…) causes troubles otherwise on "old" python versions as
|
||
|
|
3.6
|
||
|
|
---
|
||
|
|
setup.py | 1 +
|
||
|
|
1 file changed, 1 insertion(+)
|
||
|
|
|
||
|
|
diff --git a/setup.py b/setup.py
|
||
|
|
index 29c5a87..475a86f 100644
|
||
|
|
--- a/setup.py
|
||
|
|
+++ b/setup.py
|
||
|
|
@@ -1,3 +1,4 @@
|
||
|
|
+# -*- coding: utf-8 -*-
|
||
|
|
import io
|
||
|
|
import os
|
||
|
|
import sys
|