14
0
Files
python-bugzilla/0017-fix-typo-in-url-argument.patch
Michal Vyskocil b2af480230 - update to 0.6.1
* many new parameters for bugzilla command-line tool like --target_milestone,
  --private, --status, --assignee, et all
  * add support for Bugzilla 36
  * Unicode related fixes
- SUSE specific fixes
  * novell bugzilla support in getBugzillaClassForURL
  * obfuscated password support in oscrc
  * move novell bugzilla to 3.4
  * xmlrpclib changes done in python 2.7 from master [bug#685842]
- create suse branch for stashing SUSE specific changes
  https://gitorious.org/opensuse/python-bugzilla/commits/suse

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bugzilla?expand=0&rev=13
2011-05-23 14:05:00 +00:00

26 lines
852 B
Diff

From 77bbfe33af859cde6a0cf3423aa5f52748dfed50 Mon Sep 17 00:00:00 2001
From: Michal Vyskocil <mvyskocil@suse.cz>
Date: Fri, 4 Sep 2009 09:54:42 +0200
Subject: [PATCH 17/19] fix typo in url argument
---
bugzilla/nvlbugzilla.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/bugzilla/nvlbugzilla.py b/bugzilla/nvlbugzilla.py
index 0d88db1..fe15fd6 100644
--- a/bugzilla/nvlbugzilla.py
+++ b/bugzilla/nvlbugzilla.py
@@ -57,7 +57,7 @@ class NovellBugzilla(Bugzilla32):
self._expires = expires
super(NovellBugzilla, self).__init__(**kwargs)
# url argument exists only for backward compatibility, but is always set to same url
- self._url = self.__class__.bugzilla_url
+ self.url = self.__class__.bugzilla_url
def __get_expiration(self):
return self._expires
--
1.7.4.1