aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-08-26 19:35:02 +0200
committercedricbonhomme <devnull@localhost>2011-08-26 19:35:02 +0200
commit791cf09eb57b246181eb2dcc5c4c502c72a005b5 (patch)
tree7ce3962be95a1ffedc93c48c8077e08007822611
parentHTML tags between <code> tags are now escaped by a regular expression. (diff)
downloadnewspipe-791cf09eb57b246181eb2dcc5c4c502c72a005b5.tar.gz
newspipe-791cf09eb57b246181eb2dcc5c4c502c72a005b5.tar.bz2
newspipe-791cf09eb57b246181eb2dcc5c4c502c72a005b5.zip
Relesase 2.9
-rwxr-xr-xpyAggr3g470r.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index b6ecb8d7..9c139ef3 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 2.8 $"
+__version__ = "$Revision: 2.9 $"
__date__ = "$Date: 2010/01/29 $"
-__revision__ = "$Date: 2011/07/07 $"
+__revision__ = "$Date: 2011/08/26 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
@@ -1386,4 +1386,4 @@ if __name__ == '__main__':
thread_watch_base = threading.Thread(None, root.watch_base_classic, None, ())
thread_watch_base.setDaemon(True)
thread_watch_base.start()
- cherrypy.quickstart(root, config=path) \ No newline at end of file
+ cherrypy.quickstart(root, config=path)
bgstack15