summaryrefslogtreecommitdiff
path: root/fs/commands
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-12-12 00:33:54 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-12-12 00:33:54 +0000
commit8d3bdaec3a50d8ef38a074958e92e77eea7ee563 (patch)
tree28887724011aba9c2f686d0434c9d21f9301f5bf /fs/commands
parent019606859f92428fb3936b4ff73331044c281655 (diff)
downloadpyfilesystem-8d3bdaec3a50d8ef38a074958e92e77eea7ee563.tar.gz
Removed forgotten debug prints
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@549 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/commands')
-rw-r--r--fs/commands/fsmkdir.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/commands/fsmkdir.py b/fs/commands/fsmkdir.py
index 32c6bd3..bafb42c 100644
--- a/fs/commands/fsmkdir.py
+++ b/fs/commands/fsmkdir.py
@@ -14,8 +14,7 @@ Make a directory"""
def do_run(self, options, args):
for fs_url in args:
- fs, path = self.open_fs(fs_url, create=True)
- print fs, path
+ fs, path = self.open_fs(fs_url, create=True)
def run():
return FSMkdir().run()