[Lldb-commits] [lldb] r143228 - /lldb/trunk/examples/customization/pwd-cd-and-system/utils.py

Johnny Chen johnny.chen at apple.com
Fri Oct 28 14:23:58 PDT 2011


Author: johnny
Date: Fri Oct 28 16:23:58 2011
New Revision: 143228

URL: http://llvm.org/viewvc/llvm-project?rev=143228&view=rev
Log:
Remove extra newline in the docstring.

Modified:
    lldb/trunk/examples/customization/pwd-cd-and-system/utils.py

Modified: lldb/trunk/examples/customization/pwd-cd-and-system/utils.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/customization/pwd-cd-and-system/utils.py?rev=143228&r1=143227&r2=143228&view=diff
==============================================================================
--- lldb/trunk/examples/customization/pwd-cd-and-system/utils.py (original)
+++ lldb/trunk/examples/customization/pwd-cd-and-system/utils.py Fri Oct 28 16:23:58 2011
@@ -16,10 +16,8 @@
         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('~')





More information about the lldb-commits mailing list