14
0
Files
python-bugzilla/0019-novell-bugzilla-run-on-3.4.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

37 lines
1.0 KiB
Diff

From 82b1b6bdac75814fc94843934d9cfe4fcdef06d4 Mon Sep 17 00:00:00 2001
From: Michal Vyskocil <mvyskocil@suse.cz>
Date: Mon, 23 May 2011 14:24:58 +0200
Subject: [PATCH] novell bugzilla run on 3.4
---
bugzilla/nvlbugzilla.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bugzilla/nvlbugzilla.py b/bugzilla/nvlbugzilla.py
index fe15fd6..4acae00 100644
--- a/bugzilla/nvlbugzilla.py
+++ b/bugzilla/nvlbugzilla.py
@@ -11,7 +11,7 @@
#from bugzilla.base import BugzillaError, log
import bugzilla.base
-from bugzilla import Bugzilla32
+from bugzilla import Bugzilla34
import urllib
import urllib2
@@ -21,8 +21,8 @@ import time
import re
import os
-class NovellBugzilla(Bugzilla32):
- '''bugzilla.novell.com is a standard bugzilla 3.2 with some extensions, but
+class NovellBugzilla(Bugzilla34):
+ '''bugzilla.novell.com is a standard bugzilla 3.4 with some extensions, but
it uses an proprietary and non-standard IChain login system. This class
reimplements a login method which is compatible with iChain.
--
1.7.4.1