summaryrefslogtreecommitdiff
path: root/fs/commands
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-12-23 22:56:26 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-12-23 22:56:26 +0000
commite967c6eb790ac5e294be2a1396a3cc55c431b184 (patch)
treeb730630527581577cc8c56bde9a64815d1cb5a6c /fs/commands
parent9222de5608c7884665ad714519e2ddc7445c30e1 (diff)
downloadpyfilesystem-e967c6eb790ac5e294be2a1396a3cc55c431b184.tar.gz
Corrected name
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@576 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/commands')
-rw-r--r--fs/commands/fsmv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/commands/fsmv.py b/fs/commands/fsmv.py
index 4dc1587..9e96de6 100644
--- a/fs/commands/fsmv.py
+++ b/fs/commands/fsmv.py
@@ -4,7 +4,7 @@ from fs.utils import movefile, movefile_non_atomic, contains_files
from fs.commands import fscp
import sys
-class FSMove(fscp.FScp):
+class FSmv(fscp.FScp):
usage = """fsmv [OPTION]... [SOURCE] [DESTINATION]
Move files from SOURCE to DESTINATION"""
@@ -24,7 +24,7 @@ Move files from SOURCE to DESTINATION"""
fs.removedir(dirpath, force=True)
def run():
- return FSMove().run()
+ return FSmv().run()
if __name__ == "__main__":
sys.exit(run())