From 5d2b0636adaeecaf08a51708536a288a400972ec Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: May 22 2017 16:27:31 +0000 Subject: Ticket 49157 - fix error in ds-logpipe.py Description: Fix typo in ds-logpipe.py https://pagure.io/389-ds-base/issue/49157 Reviewed by: mreynolds(one line commit rule) (cherry picked from commit 15f5f6ac42768ae0cd2040cc4169abde8187bcdf) --- diff --git a/ldap/admin/src/scripts/ds-logpipe.py b/ldap/admin/src/scripts/ds-logpipe.py index 13712ea..f29a9ff 100644 --- a/ldap/admin/src/scripts/ds-logpipe.py +++ b/ldap/admin/src/scripts/ds-logpipe.py @@ -318,7 +318,7 @@ except OSError as e: sys.exit(1) else: print("Failed to create log pipe - %s [error %d]" % (e.strerror, e.errno)) - sys.ext(1) + sys.exit(1) if debug: print("Listening to log pipe", logfname, "number of lines", maxlines)