Skip to content

Commit 740adb2

Browse files
committed
bugzilla: base: drop misleading 'version' string
It's meant for the API version, but we've never used it.
1 parent b57042d commit 740adb2

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

bugzilla/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _init_class_from_url(self, url, sslverify):
5656
return
5757

5858
self.__class__ = c
59-
log.info("Found subclass %s v%s", c.__name__, c.version)
59+
log.info("Found subclass %s", c.__name__)
6060
return True
6161

6262

bugzilla/base.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,6 @@ class BugzillaBase(object):
184184
bz_ver_major = 0
185185
bz_ver_minor = 0
186186

187-
# Intended to be the API version of the class, but historically is
188-
# unused and basically worthless since we don't plan on breaking API.
189-
version = "0.1"
190-
191187
@staticmethod
192188
def url_to_query(url):
193189
'''

0 commit comments

Comments
 (0)