summaryrefslogtreecommitdiff
path: root/fs/commands/fsmkdir.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/commands/fsmkdir.py')
-rw-r--r--fs/commands/fsmkdir.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/commands/fsmkdir.py b/fs/commands/fsmkdir.py
index ad4324e..73c0a02 100644
--- a/fs/commands/fsmkdir.py
+++ b/fs/commands/fsmkdir.py
@@ -3,20 +3,20 @@ from fs.commands.runner import Command
import sys
class FSMkdir(Command):
-
+
usage = """fsmkdir [PATH]
Make a directory"""
version = "1.0"
-
+
def do_run(self, options, args):
-
- for fs_url in args:
- self.open_fs(fs_url, create_dir=True)
-
+
+ for fs_url in args:
+ self.open_fs(fs_url, create_dir=True)
+
def run():
return FSMkdir().run()
-
+
if __name__ == "__main__":
sys.exit(run())
- \ No newline at end of file
+