From 538059412280bc536817674bfe1196c0b16f0032 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 16 Jul 2015 09:45:08 +0100 Subject: [PATCH] added HTTP method to method .doc() --- steam/webapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/webapi.py b/steam/webapi.py index 3a95db2..25106f3 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -270,7 +270,7 @@ class WebAPIMethod(object): return self._parent.https def doc(self): - doc = "%(name)s (v%(version)04d)\n" % self._dict + doc = "%(httpmethod)s %(name)s (v%(version)04d)\n" % self._dict if 'description' in self._dict: doc += "\n %(description)s\n" % self._dict