Skip to content

Commit

Permalink
Fix imports and docopt usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcardle committed Mar 22, 2014
1 parent f1731a0 commit a060a59
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions sizefs/sizefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@
https://code.google.com/p/macfuse/wiki/OPTIONS
http://fuse.sourceforge.net/doxygen/index.html
Usage:
sizefs.py [--debug] <mount_point>
sizefs.py --version
Options:
--debug Debug
-h --help Show this screen.
--version Show version.
"""

import logging
Expand All @@ -57,9 +65,9 @@
from fs.path import iteratepath, pathsplit, normpath
from fs.base import FS, synchronize
from fs.errors import ResourceNotFoundError, ResourceInvalidError
from .contents import (SizeFSOneGen, SizeFSZeroGen, SizeFSAlphaNumGen, ONE_K,
from contents import (SizeFSOneGen, SizeFSZeroGen, SizeFSAlphaNumGen, ONE_K,
FILE_REGEX)
from .sizefsFuse import SizeFSLogging, SizefsFuse
from sizefsFuse import SizeFSLogging, SizefsFuse


__author__ = "Mark McArdle, Joel Wright"
Expand Down

0 comments on commit a060a59

Please sign in to comment.