Remove extra newline in the docstring.

llvm-svn: 143228
This commit is contained in:
Johnny Chen 2011-10-28 21:23:58 +00:00
parent fa59ac363e
commit a4c6a7b2b6
1 changed files with 2 additions and 4 deletions

View File

@ -16,10 +16,8 @@ class Holder:
cls._prev_dir_ = dir
def chdir(debugger, args, result, dict):
"""
Change the working directory, or cd to ${HOME}.
You can also issue 'cd -' to change to the previous working directory.
"""
"""Change the working directory, or cd to ${HOME}.
You can also issue 'cd -' to change to the previous working directory."""
new_dir = args.strip()
if not new_dir:
new_dir = os.path.expanduser('~')