summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Scheller <github@loowis.durge.org>2016-01-06 13:17:48 +0000
committerAndrew Scheller <github@loowis.durge.org>2016-01-06 13:17:48 +0000
commit191a54467a93cf9d497ce77b00d3e61f9ca28404 (patch)
tree73c002f4de94e3124b23d145067aa50bb2158876
parent8e16e50c0f71a5fe604024483c9f16e5d20aa675 (diff)
parente16f280c0ff70426facc874384a23b95ec756241 (diff)
downloadpyfilesystem-git-191a54467a93cf9d497ce77b00d3e61f9ca28404.tar.gz
Merge pull request #235 from PyFilesystem/lurch-patch-1
Replace GoogleCode URLs
-rw-r--r--docs/getting_started.rst2
-rw-r--r--docs/introduction.rst2
-rw-r--r--fs/expose/fuse/__init__.py2
-rw-r--r--fs/tests/test_ftpfs.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index df2eff3..1e8c013 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -41,7 +41,7 @@ Prerequisites
PyFilesystem requires at least **Python 2.6**. There are a few other dependencies if you want to use some of the more advanced filesystem interfaces, but for basic use all that is needed is the Python standard library.
- * Boto (required for :mod:`fs.s3fs`) http://code.google.com/p/boto/
+ * Boto (required for :mod:`fs.s3fs`) https://github.com/boto/boto
* Paramiko (required for :class:`fs.ftpfs.FTPFS`) http://www.lag.net/paramiko/
* wxPython (required for :mod:`fs.browsewin`) http://www.wxpython.org/
diff --git a/docs/introduction.rst b/docs/introduction.rst
index 6d6c665..affa880 100644
--- a/docs/introduction.rst
+++ b/docs/introduction.rst
@@ -29,7 +29,7 @@ If you have any problems or questions, please contact the developers through one
Bugs
####
-If you find a bug in PyFilesystem, please file an issue: http://code.google.com/p/pyfilesystem/issues/list
+If you find a bug in PyFilesystem, please file an issue: https://github.com/PyFilesystem/pyfilesystem/issues
Discussion Group
################
diff --git a/fs/expose/fuse/__init__.py b/fs/expose/fuse/__init__.py
index ed75033..60614be 100644
--- a/fs/expose/fuse/__init__.py
+++ b/fs/expose/fuse/__init__.py
@@ -41,7 +41,7 @@ to subprocess.Popen::
The binding to FUSE is created via ctypes, using a custom version of the
fuse.py code from Giorgos Verigakis:
- http://code.google.com/p/fusepy/
+ https://github.com/terencehonles/fusepy
"""
diff --git a/fs/tests/test_ftpfs.py b/fs/tests/test_ftpfs.py
index d37e5df..a9cd0b5 100644
--- a/fs/tests/test_ftpfs.py
+++ b/fs/tests/test_ftpfs.py
@@ -21,7 +21,7 @@ try:
from pyftpdlib.servers import FTPServer
except ImportError:
if not PY3:
- raise ImportError("Requires pyftpdlib <http://code.google.com/p/pyftpdlib/>")
+ raise ImportError("Requires pyftpdlib <https://github.com/giampaolo/pyftpdlib>")
from fs.path import *