From 693355141c1c0981ef57542baaeacff8169ae861 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 23 Feb 2015 19:45:23 -0800 Subject: [PATCH] fix file headers --- bin/make-new-etg-file.py | 4 ++-- etg/_richtext.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/make-new-etg-file.py b/bin/make-new-etg-file.py index 7d022edd..69f2923c 100755 --- a/bin/make-new-etg-file.py +++ b/bin/make-new-etg-file.py @@ -4,7 +4,7 @@ # Author: Kevin Ollivier # # Created: 24-Sept-2011 -# Copyright: (c) 2013 by Kevin Ollivier, Robin Dunn +# Copyright: (c) 2015 by Kevin Ollivier, Robin Dunn # License: wxWindows License #--------------------------------------------------------------------------- @@ -104,7 +104,7 @@ def main(): item_str = "" for item in options.items.split(","): - item_str += '"%s",\n' % item + item_str += "'%s',\n" % item values = { "author" : options.author, diff --git a/etg/_richtext.py b/etg/_richtext.py index 698899aa..72e960c1 100644 --- a/etg/_richtext.py +++ b/etg/_richtext.py @@ -1,9 +1,9 @@ #--------------------------------------------------------------------------- -# Name: etg/_html.py +# Name: etg/_richtext.py # Author: Robin Dunn # # Created: 27-Oct-2012 -# Copyright: (c) 2013 by Total Control Software +# Copyright: (c) 2015 by Total Control Software # License: wxWindows License #---------------------------------------------------------------------------