From 93a4d1ae150eeb634b45ad4a688088de8cb1956e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Wed, 24 May 2006 08:07:21 +0200 Subject: [PATCH] Explicitly specify utf-8 coding in file uncommit.py has a non-ascii character in it (in my name in the copyright line). Without this coding: comment, I get an error like the following when I run stgit: /home/kha/git/stgit/stgit/main.py:61: DeprecationWarning: Non-ASCII character '\xc3' in file /home/kha/git/stgit/stgit/commands/uncommit.py on line 3, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details --- stgit/commands/uncommit.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stgit/commands/uncommit.py b/stgit/commands/uncommit.py index e03d207..52ce5a8 100644 --- a/stgit/commands/uncommit.py +++ b/stgit/commands/uncommit.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + __copyright__ = """ Copyright (C) 2006, Karl Hasselström -- 2.11.0