[tuxdroid-svn] r5920 - software_suite_v3/software/plugin/plugin-merry-tuxmas/trunk/executables
Status: Beta
Brought to you by:
ks156
From: remi <c2m...@c2...> - 2009-12-02 11:34:14
|
Author: remi Date: 2009-12-02 12:34:01 +0100 (Wed, 02 Dec 2009) New Revision: 5920 Modified: software_suite_v3/software/plugin/plugin-merry-tuxmas/trunk/executables/plugin-marry-tuxmas.py Log: * Typo fixes "Marry" -> "Merry" u_U Modified: software_suite_v3/software/plugin/plugin-merry-tuxmas/trunk/executables/plugin-marry-tuxmas.py =================================================================== --- software_suite_v3/software/plugin/plugin-merry-tuxmas/trunk/executables/plugin-marry-tuxmas.py 2009-12-02 09:42:11 UTC (rev 5919) +++ software_suite_v3/software/plugin/plugin-merry-tuxmas/trunk/executables/plugin-marry-tuxmas.py 2009-12-02 11:34:01 UTC (rev 5920) @@ -6,7 +6,7 @@ # http://www.gnu.org/copyleft/gpl.html __author__ = "Kysoh" -__appname__ = "Marry Tuxmas" +__appname__ = "Merry Tuxmas" __version__ = "0.0.1" __date__ = "2009/12/02" __license__ = "GPL" @@ -23,7 +23,7 @@ from util.SimplePlugin.SimplePlugin import SimplePlugin ATTIUNE_NAMES_LIST = [ - "12_days", + "12_days", "Jingle_Bells", "Merry_Christmas_Song", "Hohoho", @@ -65,7 +65,7 @@ self.__frequency = frequency -class MarryTuxmasPlugin(SimplePlugin): +class MerryTuxmasPlugin(SimplePlugin): """This class override the SimplePlugin class to make easy the plugin coding. """ @@ -164,5 +164,5 @@ pass if __name__ == "__main__": - plugin = MarryTuxmasPlugin() + plugin = MerryTuxmasPlugin() plugin.boot(sys.argv[1:], Configuration()) |