From c9b1f6b366e4f51c8fbf1051bcb44c7d91364b89 Mon Sep 17 00:00:00 2001 From: Kamen Mazdrashki Date: Mon, 21 Apr 2014 03:47:40 +0200 Subject: [PATCH] samba-tool/upgrade: Fix exception thrown during upgrade from samba3 Change-Id: Ib486c0c7a68c53c61acdf270f966a43b1c61bace Signed-off-by: Kamen Mazdrashki Reviewed-By: Jelmer Vernooij --- 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 7eca5b6e5d4..11a66a61161 100644 --- a/python/samba/upgrade.py +++ b/python/samba/upgrade.py @@ -666,7 +666,7 @@ Please fix this account before attempting to upgrade again try: ldb_object = Ldb(url, credentials=creds) except ldb.LdbError, e: - raise ProvisiongError("Could not open ldb connection to %s, the error message is: %s" % (url, e)) + raise ProvisioningError("Could not open ldb connection to %s, the error message is: %s" % (url, e)) else: break logger.info("Exporting posix attributes") -- 2.11.4.GIT