summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Martini <seb@dbzteam.org>2009-09-24 16:56:14 +0200
committerSebastien Martini <seb@dbzteam.org>2009-09-24 16:56:14 +0200
commit5752a6f0cd7a93997ea7f3aca14c7cebb06fc795 (patch)
tree3723b22d3d1d1c2547b9a871dd6d6d2f719dc559
parent4343e273d455ca91fb615d1179f9591972ec9697 (diff)
downloadpyinotify-0.8.7.tar.gz
Pyinotify 0.8.70.8.7
-rwxr-xr-xpyinotify.py2
-rwxr-xr-xsetup.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/pyinotify.py b/pyinotify.py
index 7d671cc..409ce30 100755
--- a/pyinotify.py
+++ b/pyinotify.py
@@ -88,7 +88,7 @@ import asyncore
__author__ = "seb@dbzteam.org (Sebastien Martini)"
-__version__ = "0.8.6"
+__version__ = "0.8.7"
__metaclass__ = type # Use new-style classes by default
diff --git a/setup.py b/setup.py
index f6cbd71..306f5a0 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ platform = get_platform()
# check linux platform
if not platform.startswith('linux'):
- raise Exception, "inotify not available under %s" % platform
+ raise Exception, "inotify is not available under %s" % platform
classif=[
'Environment :: Console',
@@ -33,7 +33,7 @@ classif=[
setup(
name='pyinotify',
- version='0.8.6',
+ version='0.8.7',
description='Linux filesystem events monitoring',
author='Sebastien Martini',
author_email='sebastien.martini@gmail.com',
@@ -41,6 +41,6 @@ setup(
platforms='Linux',
classifiers=classif,
url='http://trac.dbzteam.org/pyinotify',
- download_url='http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.8.6.tar.gz',
+ download_url='http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.8.7.tar.gz',
py_modules=['pyinotify'],
)