Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefer https:// URLs where available #166

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Pyinotify

* License : MIT
* Project URL : [http://github.com/seb-m/pyinotify](http://github.com/seb-m/pyinotify)
* Project Wiki : [http://github.com/seb-m/pyinotify/wiki](http://github.com/seb-m/pyinotify/wiki)
* Project URL : [https://github.com/seb-m/pyinotify](https://github.com/seb-m/pyinotify)
* Project Wiki : [https://github.com/seb-m/pyinotify/wiki](https://github.com/seb-m/pyinotify/wiki)
* API Documentation: [http://seb-m.github.com/pyinotify](http://seb-m.github.com/pyinotify)


Expand Down
2 changes: 1 addition & 1 deletion old/NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Changes are now documented on this page:
http://github.com/seb-m/pyinotify/wiki/Recent-Developments
https://github.com/seb-m/pyinotify/wiki/Recent-Developments


Changes in version 0.8.0:
Expand Down
2 changes: 1 addition & 1 deletion python2/examples/tutorial_asyncnotifier.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AsyncNotifier example from tutorial
#
# See: http://github.com/seb-m/pyinotify/wiki/Tutorial
# See: https://github.com/seb-m/pyinotify/wiki/Tutorial
#
import asyncore
import pyinotify
Expand Down
2 changes: 1 addition & 1 deletion python2/examples/tutorial_notifier.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Notifier example from tutorial
#
# See: http://github.com/seb-m/pyinotify/wiki/Tutorial
# See: https://github.com/seb-m/pyinotify/wiki/Tutorial
#
import pyinotify

Expand Down
2 changes: 1 addition & 1 deletion python2/examples/tutorial_threadednotifier.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ThreadedNotifier example from tutorial
#
# See: http://github.com/seb-m/pyinotify/wiki/Tutorial
# See: https://github.com/seb-m/pyinotify/wiki/Tutorial
#
import pyinotify

Expand Down
2 changes: 1 addition & 1 deletion python2/pyinotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,7 @@ def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull,

def fork_daemon():
# Adapted from Chad J. Schroeder's recipe
# @see http://code.activestate.com/recipes/278731/
# @see https://code.activestate.com/recipes/278731/
pid = os.fork()
if (pid == 0):
# parent 2
Expand Down
2 changes: 1 addition & 1 deletion python3/pyinotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull,

def fork_daemon():
# Adapted from Chad J. Schroeder's recipe
# @see http://code.activestate.com/recipes/278731/
# @see https://code.activestate.com/recipes/278731/
pid = os.fork()
if (pid == 0):
# parent 2
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def should_compile_ext_mod():
license='MIT License',
platforms='Linux',
classifiers=classif,
url='http://github.com/seb-m/pyinotify',
download_url='http://pypi.python.org/pypi/pyinotify',
url='https://github.com/seb-m/pyinotify',
download_url='https://pypi.org/project/pyinotify/',
ext_modules=ext_mod,
py_modules=['pyinotify'],
package_dir=package_dir,
Expand Down