The Samba-Bugzilla – Attachment 11331 Details for
Bug 11436
samba-tool uncaught exception error
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for master
0001-python-samba-upgrade.py-Fix-format-string-syntax-in-.patch (text/plain), 1.19 KB, created by
Andrew Bartlett
on 2015-08-14 04:44:22 UTC
(
hide
)
Description:
patch for master
Filename:
MIME Type:
Creator:
Andrew Bartlett
Created:
2015-08-14 04:44:22 UTC
Size:
1.19 KB
patch
obsolete
>From 7d0685bbb3f71b75547a4cf428f05bc33828b280 Mon Sep 17 00:00:00 2001 >From: Andrew Bartlett <abartlet@samba.org> >Date: Fri, 14 Aug 2015 16:43:41 +1200 >Subject: [PATCH] python:samba/upgrade.py Fix format string syntax in error > condition > >BUG: https://bugzilla.samba.org/show_bug.cgi?id=11436 >Signed-off-by: Andrew Bartlett <abartlet@samba.org> >--- > python/samba/upgrade.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/python/samba/upgrade.py b/python/samba/upgrade.py >index 94b7732..1ef0b39 100644 >--- a/python/samba/upgrade.py >+++ b/python/samba/upgrade.py >@@ -407,7 +407,7 @@ def get_posix_attr_from_ldap_backend(logger, ldb_object, base_dn, user, attr): > expression=("(&(objectClass=posixAccount)(uid=%s))" > % (user)), attrs=[attr]) > except ldb.LdbError, e: >- raise ProvisioningError("Failed to retrieve attribute %s for user %s, the error is: %s", attr, user, e) >+ raise ProvisioningError("Failed to retrieve attribute %s for user %s, the error is: %s", (attr, user, e)) > else: > if msg.count <= 1: > # This will raise KeyError (which is what we want) if there isn't a entry for this user >-- >2.5.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 11436
:
11331
|
11332
|
11335