diff options
Diffstat (limited to 'fs/tempfs.py')
-rw-r--r-- | fs/tempfs.py | 4 |
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, |