From 0cd3aa0a1d81201e31a21adb31efc2f4f57cd3aa Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Wed, 10 Oct 2018 04:10:48 -0700 Subject: [PATCH] Prefer https:// URLs where available --- README.md | 4 ++-- old/NEWS | 2 +- python2/examples/tutorial_asyncnotifier.py | 2 +- python2/examples/tutorial_notifier.py | 2 +- python2/examples/tutorial_threadednotifier.py | 2 +- python2/pyinotify.py | 2 +- python3/pyinotify.py | 2 +- setup.py | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ad8fe0a..1645f9a 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/old/NEWS b/old/NEWS index 958b69a..6f1530a 100644 --- a/old/NEWS +++ b/old/NEWS @@ -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: diff --git a/python2/examples/tutorial_asyncnotifier.py b/python2/examples/tutorial_asyncnotifier.py index 5037fd4..784ad88 100644 --- a/python2/examples/tutorial_asyncnotifier.py +++ b/python2/examples/tutorial_asyncnotifier.py @@ -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 diff --git a/python2/examples/tutorial_notifier.py b/python2/examples/tutorial_notifier.py index 501f3a2..62e0473 100644 --- a/python2/examples/tutorial_notifier.py +++ b/python2/examples/tutorial_notifier.py @@ -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 diff --git a/python2/examples/tutorial_threadednotifier.py b/python2/examples/tutorial_threadednotifier.py index 3635987..ee3856f 100644 --- a/python2/examples/tutorial_threadednotifier.py +++ b/python2/examples/tutorial_threadednotifier.py @@ -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 diff --git a/python2/pyinotify.py b/python2/pyinotify.py index d2f0816..1b2ce38 100755 --- a/python2/pyinotify.py +++ b/python2/pyinotify.py @@ -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 diff --git a/python3/pyinotify.py b/python3/pyinotify.py index bc24313..d92c0a2 100755 --- a/python3/pyinotify.py +++ b/python3/pyinotify.py @@ -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 diff --git a/setup.py b/setup.py index 15d68ab..c5049e3 100755 --- a/setup.py +++ b/setup.py @@ -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,