Fix doc string for sysmisc.cd()
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Mon, 5 Nov 2018 10:23:34 +0000 (11:23 +0100)
committerChristian Herdtweck <christian.herdtweck@intra2net.com>
Mon, 5 Nov 2018 11:21:54 +0000 (12:21 +0100)
Thanks to Plamen for hint

src/sysmisc.py

index 6898f31..12d2c88 100644 (file)
@@ -118,6 +118,8 @@ def cd(path):
     Taken from comment for python recipe by Greg Warner at
     http://code.activestate.com/recipes/576620-changedirectory-context-manager/
     (MIT license)
+
+    :arg str path: paht to temporarily switch to
     """
     orig_wd = os.getcwd()
     os.chdir(path)