Author: julianfoad
Date: Thu Dec 17 12:48:09 2009
New Revision: 891679
URL: http://svn.apache.org/viewvc?rev=891679&view=rev
Log:
Move character-coding declaration lines in Python files back to the beginning
of the file where they need to be, after a licence message was inserted
before them in r882257.
* tools/hook-scripts/mailer/mailer.py
* tools/hook-scripts/svnperms.py
* subversion/bindings/swig/python/tests/trac/test.py
Move the "coding" line back to the beginning, just after the she-bang line.
Modified:
subversion/trunk/subversion/bindings/swig/python/tests/trac/test.py
subversion/trunk/tools/hook-scripts/mailer/mailer.py
subversion/trunk/tools/hook-scripts/svnperms.py
Modified: subversion/trunk/subversion/bindings/swig/python/tests/trac/test.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/python/tests/trac/test.py?rev=891679&r1=891678&r2=891679&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/python/tests/trac/test.py
(original)
+++ subversion/trunk/subversion/bindings/swig/python/tests/trac/test.py Thu Dec
17 12:48:09 2009
@@ -1,4 +1,6 @@
#!/usr/bin/env python
+
+# -*- coding: utf-8 -*-
#
#
# Licensed to the Apache Software Foundation (ASF) under one
@@ -19,8 +21,6 @@
# under the License.
#
#
-# -*- coding: utf-8 -*-
-#
# Copyright (C) 2003, 2004, 2005 Edgewall Software
# Copyright (C) 2003, 2004, 2005 Jonas Borgström <[email protected]>
# Copyright (C) 2005 Christopher Lenz <[email protected]>
Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/hook-scripts/mailer/mailer.py?rev=891679&r1=891678&r2=891679&view=diff
==============================================================================
--- subversion/trunk/tools/hook-scripts/mailer/mailer.py (original)
+++ subversion/trunk/tools/hook-scripts/mailer/mailer.py Thu Dec 17 12:48:09
2009
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+# -*- coding: utf-8 -*-
#
#
# Licensed to the Apache Software Foundation (ASF) under one
@@ -19,8 +20,6 @@
# under the License.
#
#
-# -*- coding: utf-8 -*-
-#
# mailer.py: send email describing a commit
#
# $HeadURL$
Modified: subversion/trunk/tools/hook-scripts/svnperms.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/hook-scripts/svnperms.py?rev=891679&r1=891678&r2=891679&view=diff
==============================================================================
--- subversion/trunk/tools/hook-scripts/svnperms.py (original)
+++ subversion/trunk/tools/hook-scripts/svnperms.py Thu Dec 17 12:48:09 2009
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+# -*- coding: utf-8 -*-
#
#
# Licensed to the Apache Software Foundation (ASF) under one
@@ -19,7 +20,6 @@
# under the License.
#
#
-# -*- coding: utf-8 -*-
# $HeadURL$
# $LastChangedDate$