From 7b640dc2a278cc4e48409f0f189aefda6f8d741e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 5 Oct 2010 17:13:46 +0000 Subject: Use standard coding tag "utf-8" instead of "utf8" (which irritates emacs and seems wrong in general). --- lv2specgen/lv2specgen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 3a8e5b5..7a05ff9 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -1,5 +1,5 @@ #!/usr/bin/python -# -*- coding: utf8 -*- +# -*- coding: utf-8 -*- # # lv2specgen, an LV2 extension specification page generator # Copyright (c) 2009 David Robillard @@ -557,7 +557,7 @@ def specAuthors(m, subject): maint = '' for i in m.find_statements(RDF.Statement(None, doap.maintainer, None)): for j in m.find_statements(RDF.Statement(i.object, foaf.name, None)): - maint += '
%s
' % j.object.literal_value['string'] + maint += '
%s
' % j.object.literal_value['string'] if dev == '' and maint == '': return '' -- cgit v1.2.1