浏览代码

Not hide the docstring of the decorate methods

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58622 15284696-431f-4ddb-bdfa-cd5b030d7da7
Pietro Zambelli 11 年之前
父节点
当前提交
99fddbfb7a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      lib/python/pygrass/errors.py

+ 1 - 0
lib/python/pygrass/errors.py

@@ -42,4 +42,5 @@ def must_be_open(method):
             return method(self, *args, **kargs)
         else:
             warning(_("The map is close!"))
+    wrapper.__doc__ = method.__doc__
     return wrapper