From ed95c99f0e8453d78516445f6d29caf6726637e8 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 21 Oct 2013 20:56:05 -0400 Subject: [PATCH] Update email address. --- LICENSE | 2 +- README.rst | 2 +- docs/tips.rst | 2 +- earwigbot/__init__.py | 4 ++-- earwigbot/bot.py | 2 +- earwigbot/commands/__init__.py | 2 +- earwigbot/commands/access.py | 2 +- earwigbot/commands/calc.py | 2 +- earwigbot/commands/chanops.py | 2 +- earwigbot/commands/crypt.py | 2 +- earwigbot/commands/ctcp.py | 2 +- earwigbot/commands/dictionary.py | 2 +- earwigbot/commands/editcount.py | 2 +- earwigbot/commands/help.py | 2 +- earwigbot/commands/lag.py | 2 +- earwigbot/commands/langcode.py | 2 +- earwigbot/commands/link.py | 2 +- earwigbot/commands/notes.py | 2 +- earwigbot/commands/quit.py | 2 +- earwigbot/commands/registration.py | 2 +- earwigbot/commands/remind.py | 2 +- earwigbot/commands/rights.py | 2 +- earwigbot/commands/test.py | 2 +- earwigbot/commands/threads.py | 2 +- earwigbot/commands/time_command.py | 2 +- earwigbot/commands/trout.py | 2 +- earwigbot/config/__init__.py | 2 +- earwigbot/config/formatter.py | 2 +- earwigbot/config/node.py | 2 +- earwigbot/config/ordered_yaml.py | 2 +- earwigbot/config/permissions.py | 2 +- earwigbot/config/script.py | 2 +- earwigbot/exceptions.py | 2 +- earwigbot/irc/__init__.py | 2 +- earwigbot/irc/connection.py | 2 +- earwigbot/irc/data.py | 2 +- earwigbot/irc/frontend.py | 2 +- earwigbot/irc/rc.py | 2 +- earwigbot/irc/watcher.py | 2 +- earwigbot/lazy.py | 2 +- earwigbot/managers.py | 2 +- earwigbot/tasks/__init__.py | 2 +- earwigbot/tasks/wikiproject_tagger.py | 2 +- earwigbot/util.py | 2 +- earwigbot/wiki/__init__.py | 2 +- earwigbot/wiki/category.py | 2 +- earwigbot/wiki/constants.py | 2 +- earwigbot/wiki/copyvios/__init__.py | 2 +- earwigbot/wiki/copyvios/exclusions.py | 2 +- earwigbot/wiki/copyvios/markov.py | 2 +- earwigbot/wiki/copyvios/parsers.py | 2 +- earwigbot/wiki/copyvios/result.py | 2 +- earwigbot/wiki/copyvios/search.py | 2 +- earwigbot/wiki/page.py | 2 +- earwigbot/wiki/site.py | 2 +- earwigbot/wiki/sitesdb.py | 2 +- earwigbot/wiki/user.py | 2 +- setup.py | 4 ++-- tests/__init__.py | 2 +- tests/test_calc.py | 2 +- tests/test_test.py | 2 +- 61 files changed, 63 insertions(+), 63 deletions(-) diff --git a/LICENSE b/LICENSE index c34d909..66dfee1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2009-2013 Ben Kurtovic +Copyright (C) 2009-2013 Ben Kurtovic Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.rst b/README.rst index 4a9e3b0..9dd40f5 100644 --- a/README.rst +++ b/README.rst @@ -202,4 +202,4 @@ Footnotes .. _wikiproject_tagger: https://github.com/earwig/earwigbot/blob/develop/earwigbot/tasks/wikiproject_tagger.py .. _afc_statistics: https://github.com/earwig/earwigbot-plugins/blob/develop/tasks/afc_statistics.py .. _its code and docstrings: https://github.com/earwig/earwigbot/tree/develop/earwigbot/wiki -.. _Let me know: ben.kurtovic@verizon.net +.. _Let me know: ben.kurtovic@gmail.com diff --git a/docs/tips.rst b/docs/tips.rst index 4f4052e..00a648f 100644 --- a/docs/tips.rst +++ b/docs/tips.rst @@ -42,5 +42,5 @@ Tips .. _logging: http://docs.python.org/library/logging.html .. _!git plugin: https://github.com/earwig/earwigbot-plugins/blob/develop/commands/git.py -.. _Let me know: ben.kurtovic@verizon.net +.. _Let me know: ben.kurtovic@gmail.com .. _create an issue: https://github.com/earwig/earwigbot/issues diff --git a/earwigbot/__init__.py b/earwigbot/__init__.py index 15dfc94..9bace8d 100644 --- a/earwigbot/__init__.py +++ b/earwigbot/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -33,7 +33,7 @@ __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2009, 2010, 2011, 2012, 2013 Ben Kurtovic" __license__ = "MIT License" __version__ = "0.2.dev" -__email__ = "ben.kurtovic@verizon.net" +__email__ = "ben.kurtovic@gmail.com" __release__ = False if not __release__: diff --git a/earwigbot/bot.py b/earwigbot/bot.py index 952657c..966ed41 100644 --- a/earwigbot/bot.py +++ b/earwigbot/bot.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/__init__.py b/earwigbot/commands/__init__.py index 3ebca25..3f4de91 100644 --- a/earwigbot/commands/__init__.py +++ b/earwigbot/commands/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/access.py b/earwigbot/commands/access.py index b4671ca..6d0ea7d 100644 --- a/earwigbot/commands/access.py +++ b/earwigbot/commands/access.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/calc.py b/earwigbot/commands/calc.py index 1c7d532..720b437 100644 --- a/earwigbot/commands/calc.py +++ b/earwigbot/commands/calc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/chanops.py b/earwigbot/commands/chanops.py index ac2e300..5f9a12e 100644 --- a/earwigbot/commands/chanops.py +++ b/earwigbot/commands/chanops.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/crypt.py b/earwigbot/commands/crypt.py index bd6222d..6dcb07b 100644 --- a/earwigbot/commands/crypt.py +++ b/earwigbot/commands/crypt.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/ctcp.py b/earwigbot/commands/ctcp.py index a3ef267..1b78f03 100644 --- a/earwigbot/commands/ctcp.py +++ b/earwigbot/commands/ctcp.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/dictionary.py b/earwigbot/commands/dictionary.py index 4a1715b..d2c9626 100644 --- a/earwigbot/commands/dictionary.py +++ b/earwigbot/commands/dictionary.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/editcount.py b/earwigbot/commands/editcount.py index be902cc..e199944 100644 --- a/earwigbot/commands/editcount.py +++ b/earwigbot/commands/editcount.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/help.py b/earwigbot/commands/help.py index 6de7a3b..cdf7e24 100644 --- a/earwigbot/commands/help.py +++ b/earwigbot/commands/help.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/lag.py b/earwigbot/commands/lag.py index cefafcc..fe76f39 100644 --- a/earwigbot/commands/lag.py +++ b/earwigbot/commands/lag.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/langcode.py b/earwigbot/commands/langcode.py index a6534c3..e12d6fe 100644 --- a/earwigbot/commands/langcode.py +++ b/earwigbot/commands/langcode.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/link.py b/earwigbot/commands/link.py index 1f4c9a4..927fcf8 100644 --- a/earwigbot/commands/link.py +++ b/earwigbot/commands/link.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/notes.py b/earwigbot/commands/notes.py index d275561..584389a 100644 --- a/earwigbot/commands/notes.py +++ b/earwigbot/commands/notes.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/quit.py b/earwigbot/commands/quit.py index d5954b3..6dee210 100644 --- a/earwigbot/commands/quit.py +++ b/earwigbot/commands/quit.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/registration.py b/earwigbot/commands/registration.py index f45501c..d56bc98 100644 --- a/earwigbot/commands/registration.py +++ b/earwigbot/commands/registration.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/remind.py b/earwigbot/commands/remind.py index 6018c16..756991a 100644 --- a/earwigbot/commands/remind.py +++ b/earwigbot/commands/remind.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/rights.py b/earwigbot/commands/rights.py index 749ee3c..4193b32 100644 --- a/earwigbot/commands/rights.py +++ b/earwigbot/commands/rights.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/test.py b/earwigbot/commands/test.py index 32224ff..e823386 100644 --- a/earwigbot/commands/test.py +++ b/earwigbot/commands/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/threads.py b/earwigbot/commands/threads.py index 564ab7e..255ce63 100644 --- a/earwigbot/commands/threads.py +++ b/earwigbot/commands/threads.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/time_command.py b/earwigbot/commands/time_command.py index e52087c..8b1864c 100644 --- a/earwigbot/commands/time_command.py +++ b/earwigbot/commands/time_command.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/trout.py b/earwigbot/commands/trout.py index b8ea465..d32ffae 100644 --- a/earwigbot/commands/trout.py +++ b/earwigbot/commands/trout.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config/__init__.py b/earwigbot/config/__init__.py index 9a91583..9b3d147 100644 --- a/earwigbot/config/__init__.py +++ b/earwigbot/config/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config/formatter.py b/earwigbot/config/formatter.py index cb74c0c..ec822fe 100644 --- a/earwigbot/config/formatter.py +++ b/earwigbot/config/formatter.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config/node.py b/earwigbot/config/node.py index d3be3e5..de2c6fa 100644 --- a/earwigbot/config/node.py +++ b/earwigbot/config/node.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config/ordered_yaml.py b/earwigbot/config/ordered_yaml.py index 0fc1df6..6d08af4 100644 --- a/earwigbot/config/ordered_yaml.py +++ b/earwigbot/config/ordered_yaml.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config/permissions.py b/earwigbot/config/permissions.py index d3acb88..0b97eba 100644 --- a/earwigbot/config/permissions.py +++ b/earwigbot/config/permissions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config/script.py b/earwigbot/config/script.py index afdb41a..6f3e9cb 100644 --- a/earwigbot/config/script.py +++ b/earwigbot/config/script.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/exceptions.py b/earwigbot/exceptions.py index 546a9f9..27f926e 100644 --- a/earwigbot/exceptions.py +++ b/earwigbot/exceptions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/irc/__init__.py b/earwigbot/irc/__init__.py index 3fe86e9..f3f799c 100644 --- a/earwigbot/irc/__init__.py +++ b/earwigbot/irc/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/irc/connection.py b/earwigbot/irc/connection.py index 943823d..f68028e 100644 --- a/earwigbot/irc/connection.py +++ b/earwigbot/irc/connection.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/irc/data.py b/earwigbot/irc/data.py index 6ff3213..d41da94 100644 --- a/earwigbot/irc/data.py +++ b/earwigbot/irc/data.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/irc/frontend.py b/earwigbot/irc/frontend.py index ce63a6e..2c71fca 100644 --- a/earwigbot/irc/frontend.py +++ b/earwigbot/irc/frontend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/irc/rc.py b/earwigbot/irc/rc.py index 1c526b0..7dc17b0 100644 --- a/earwigbot/irc/rc.py +++ b/earwigbot/irc/rc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/irc/watcher.py b/earwigbot/irc/watcher.py index 469914f..7745f2f 100644 --- a/earwigbot/irc/watcher.py +++ b/earwigbot/irc/watcher.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/lazy.py b/earwigbot/lazy.py index 5526478..350462e 100644 --- a/earwigbot/lazy.py +++ b/earwigbot/lazy.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/managers.py b/earwigbot/managers.py index d72df54..08a809d 100644 --- a/earwigbot/managers.py +++ b/earwigbot/managers.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/__init__.py b/earwigbot/tasks/__init__.py index d3590a4..8d04c2e 100644 --- a/earwigbot/tasks/__init__.py +++ b/earwigbot/tasks/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/wikiproject_tagger.py b/earwigbot/tasks/wikiproject_tagger.py index eecbff7..5ae3018 100644 --- a/earwigbot/tasks/wikiproject_tagger.py +++ b/earwigbot/tasks/wikiproject_tagger.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/util.py b/earwigbot/util.py index 41f9eb6..c7bfdba 100755 --- a/earwigbot/util.py +++ b/earwigbot/util.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/__init__.py b/earwigbot/wiki/__init__.py index 7e1d0be..5977e4d 100644 --- a/earwigbot/wiki/__init__.py +++ b/earwigbot/wiki/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/category.py b/earwigbot/wiki/category.py index 6707c43..d889bed 100644 --- a/earwigbot/wiki/category.py +++ b/earwigbot/wiki/category.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/constants.py b/earwigbot/wiki/constants.py index 39f1400..70db213 100644 --- a/earwigbot/wiki/constants.py +++ b/earwigbot/wiki/constants.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyvios/__init__.py b/earwigbot/wiki/copyvios/__init__.py index 8b906f9..89532f8 100644 --- a/earwigbot/wiki/copyvios/__init__.py +++ b/earwigbot/wiki/copyvios/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyvios/exclusions.py b/earwigbot/wiki/copyvios/exclusions.py index 7b36d2a..c8d5e4c 100644 --- a/earwigbot/wiki/copyvios/exclusions.py +++ b/earwigbot/wiki/copyvios/exclusions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyvios/markov.py b/earwigbot/wiki/copyvios/markov.py index a785b6c..c5e881d 100644 --- a/earwigbot/wiki/copyvios/markov.py +++ b/earwigbot/wiki/copyvios/markov.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyvios/parsers.py b/earwigbot/wiki/copyvios/parsers.py index 30f0c7f..bfd3ebc 100644 --- a/earwigbot/wiki/copyvios/parsers.py +++ b/earwigbot/wiki/copyvios/parsers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyvios/result.py b/earwigbot/wiki/copyvios/result.py index 94b2775..70d30fc 100644 --- a/earwigbot/wiki/copyvios/result.py +++ b/earwigbot/wiki/copyvios/result.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyvios/search.py b/earwigbot/wiki/copyvios/search.py index 1f2ac8c..1d0f01d 100644 --- a/earwigbot/wiki/copyvios/search.py +++ b/earwigbot/wiki/copyvios/search.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/page.py b/earwigbot/wiki/page.py index ffcde15..45f629f 100644 --- a/earwigbot/wiki/page.py +++ b/earwigbot/wiki/page.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/site.py b/earwigbot/wiki/site.py index e94b4c7..ad0d660 100644 --- a/earwigbot/wiki/site.py +++ b/earwigbot/wiki/site.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/sitesdb.py b/earwigbot/wiki/sitesdb.py index 75cca0f..07cac02 100644 --- a/earwigbot/wiki/sitesdb.py +++ b/earwigbot/wiki/sitesdb.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/user.py b/earwigbot/wiki/user.py index 91bb523..53fc5a7 100644 --- a/earwigbot/wiki/user.py +++ b/earwigbot/wiki/user.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index 8e0931c..7ba2375 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -62,7 +62,7 @@ setup( test_suite = "tests", version = __version__, author = "Ben Kurtovic", - author_email = "ben.kurtovic@verizon.net", + author_email = "ben.kurtovic@gmail.com", url = "https://github.com/earwig/earwigbot", description = "EarwigBot is a Python robot that edits Wikipedia and interacts with people over IRC.", long_description = long_docs, diff --git a/tests/__init__.py b/tests/__init__.py index 6ab010f..81fcc93 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/test_calc.py b/tests/test_calc.py index b2ce1f7..fb4cc04 100644 --- a/tests/test_calc.py +++ b/tests/test_calc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/test_test.py b/tests/test_test.py index 9e5d054..e93e159 100644 --- a/tests/test_test.py +++ b/tests/test_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2013 Ben Kurtovic +# Copyright (C) 2009-2013 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal