summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Martini <seb@dbzteam.org>2010-10-17 18:52:38 +0200
committerSebastien Martini <seb@dbzteam.org>2010-10-17 18:52:38 +0200
commit5d381ce785cd16fb1f43f53fd255927c1f18d82d (patch)
tree712f14abb0b04b2e2fa4e6b8c89ce9eb9cb4afcd
parenta745ca51ff0c7ff7e51a6cc35cc0eb2e4c408309 (diff)
downloadpyinotify-5d381ce785cd16fb1f43f53fd255927c1f18d82d.tar.gz
Released Pyinotify 0.9.1.0.9.1
-rwxr-xr-xpython2/pyinotify.py6
-rwxr-xr-xpython3/pyinotify.py6
-rwxr-xr-xsetup.py4
3 files changed, 8 insertions, 8 deletions
diff --git a/python2/pyinotify.py b/python2/pyinotify.py
index 32e2f22..b11bc96 100755
--- a/python2/pyinotify.py
+++ b/python2/pyinotify.py
@@ -91,7 +91,7 @@ except ImportError:
__author__ = "seb@dbzteam.org (Sebastien Martini)"
-__version__ = "0.9.0"
+__version__ = "0.9.1"
__metaclass__ = type # Use new-style classes by default
@@ -1203,7 +1203,7 @@ class Notifier:
stderr=os.devnull):
"""
pid_file: file where the pid will be written. If pid_file=None the pid
- is written to /var/run/<sys.argv[0]|pyinotify>.pid, if
+ is written to /var/run/<sys.argv[0]|pyinotify>.pid, if
pid_file=False no pid_file is written.
stdin, stdout, stderr: files associated to common streams.
"""
@@ -1284,7 +1284,7 @@ class Notifier:
keyworded arguments are directly passed to daemonize see
__daemonize() method. If pid_file=None or is set to a
pathname the caller must ensure the file does not exist
- before this method is called otherwise an exception
+ before this method is called otherwise an exception
pyinotify.NotifierError will be raised. If pid_file=False
it is still daemonized but the pid is not written in any
file.
diff --git a/python3/pyinotify.py b/python3/pyinotify.py
index acee931..10126d2 100755
--- a/python3/pyinotify.py
+++ b/python3/pyinotify.py
@@ -92,7 +92,7 @@ except ImportError:
__author__ = "seb@dbzteam.org (Sebastien Martini)"
-__version__ = "0.9.0"
+__version__ = "0.9.1"
# Compatibity mode: set to True to improve compatibility with
@@ -1164,7 +1164,7 @@ class Notifier:
stderr=os.devnull):
"""
pid_file: file where the pid will be written. If pid_file=None the pid
- is written to /var/run/<sys.argv[0]|pyinotify>.pid, if
+ is written to /var/run/<sys.argv[0]|pyinotify>.pid, if
pid_file=False no pid_file is written.
stdin, stdout, stderr: files associated to common streams.
"""
@@ -1246,7 +1246,7 @@ class Notifier:
keyworded arguments are directly passed to daemonize see
__daemonize() method. If pid_file=None or is set to a
pathname the caller must ensure the file does not exist
- before this method is called otherwise an exception
+ before this method is called otherwise an exception
pyinotify.NotifierError will be raised. If pid_file=False
it is still daemonized but the pid is not written in any
file.
diff --git a/setup.py b/setup.py
index aa5bffa..3d625e6 100755
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ else:
setup(
name='pyinotify',
- version='0.9.0',
+ version='0.9.1',
description='Linux filesystem events monitoring',
author='Sebastien Martini',
author_email='sebastien.martini@gmail.com',
@@ -47,7 +47,7 @@ setup(
platforms='Linux',
classifiers=classif,
url='http://github.com/seb-m/pyinotify',
- download_url='http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.0.tar.gz',
+ download_url='http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.1.tar.gz',
py_modules=['pyinotify'],
package_dir=package_dir,
packages=[''],