From 816c5f773191b99985403b86770c5b328d3c56c1 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 12 Nov 2015 11:05:40 +0200 Subject: [PATCH] remove doc() call when building docstrings --- steam/webapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steam/webapi.py b/steam/webapi.py index 2358b25..0f1450a 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -150,7 +150,7 @@ class WebAPI(object): def __doc__(self): doc = "Steam Web API - List of all interfaces\n\n" for interface in self.interfaces: - doc += interface.doc() + doc += interface.__doc__ return doc @@ -209,7 +209,7 @@ class WebAPIInterface(object): def __doc__(self): doc = "%s\n%s\n" % (self.name, '-'*len(self.name)) for method in self.methods: - doc += " %s\n" % method.doc().replace("\n", "\n ") + doc += " %s\n" % method.__doc__.replace("\n", "\n ") return doc