Commit a99e528b by willmcgugan

Corrected name

parent 5ec5e3a0
...@@ -4,7 +4,7 @@ from fs.utils import movefile, movefile_non_atomic, contains_files ...@@ -4,7 +4,7 @@ from fs.utils import movefile, movefile_non_atomic, contains_files
from fs.commands import fscp from fs.commands import fscp
import sys import sys
class FSMove(fscp.FScp): class FSmv(fscp.FScp):
usage = """fsmv [OPTION]... [SOURCE] [DESTINATION] usage = """fsmv [OPTION]... [SOURCE] [DESTINATION]
Move files from SOURCE to DESTINATION""" Move files from SOURCE to DESTINATION"""
...@@ -24,7 +24,7 @@ Move files from SOURCE to DESTINATION""" ...@@ -24,7 +24,7 @@ Move files from SOURCE to DESTINATION"""
fs.removedir(dirpath, force=True) fs.removedir(dirpath, force=True)
def run(): def run():
return FSMove().run() return FSmv().run()
if __name__ == "__main__": if __name__ == "__main__":
sys.exit(run()) sys.exit(run())
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment