From: Karl Hasselström Date: Wed, 24 May 2006 06:07:21 +0000 (+0200) Subject: Explicitly specify utf-8 coding in file X-Git-Tag: v0.14.3~489 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/93a4d1ae150eeb634b45ad4a688088de8cb1956e 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 --- 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