summaryrefslogtreecommitdiff
path: root/fs/tempfs.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-01-07 05:41:40 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-01-07 05:41:40 +0000
commit55738f60ee59ed43e9b871c617c2b79c9eeae7ff (patch)
treee39a08bea7859336240b44bc7a4dfe90ed74ec83 /fs/tempfs.py
parent6a04038eabbb904f4b7793491a630bcf017bb579 (diff)
downloadpyfilesystem-55738f60ee59ed43e9b871c617c2b79c9eeae7ff.tar.gz
fix typo "syncronise" => "synchronize"
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@314 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/tempfs.py')
-rw-r--r--fs/tempfs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/tempfs.py b/fs/tempfs.py
index 5c35043..dfd62ae 100644
--- a/fs/tempfs.py
+++ b/fs/tempfs.py
@@ -12,14 +12,14 @@ import tempfile
from fs.osfs import OSFS
from fs.errors import *
-from fs import _thread_syncronize_default
+from fs import _thread_synchronize_default
class TempFS(OSFS):
"""Create a Filesystem in a tempory directory (with tempfile.mkdtemp),
and removes it when the TempFS object is cleaned up."""
- def __init__(self, identifier=None, temp_dir=None, dir_mode=0700, thread_synchronize=_thread_syncronize_default):
+ def __init__(self, identifier=None, temp_dir=None, dir_mode=0700, thread_synchronize=_thread_synchronize_default):
"""Creates a temporary Filesystem
identifier -- A string that is included in the name of the temporary directory,