diff options
| author | Lukas Slebodnik <lslebodn@redhat.com> | 2016-12-21 19:08:07 +0100 |
|---|---|---|
| committer | Lukas Slebodnik <lslebodn@redhat.com> | 2017-01-16 19:11:19 +0100 |
| commit | adc5f0d9d439ae19c6b692bdc49405b6370b7457 (patch) | |
| tree | e95aa216e17cd01e0651b9604d59ae55d31ff476 /src/tests/intg | |
| parent | 9e74a7ce9a77005d96bdb4ef26c91e8f681d4900 (diff) | |
| download | sssd-adc5f0d9d439ae19c6b692bdc49405b6370b7457.tar.gz sssd-adc5f0d9d439ae19c6b692bdc49405b6370b7457.tar.xz sssd-adc5f0d9d439ae19c6b692bdc49405b6370b7457.zip | |
sssd_ldb.py: Remove a leftover debug message
"print" is a function in python3. We can remove it because it is not
important.
Portable solution would be:
from __future__ import print_function
print (basedn)
Reviewed-by: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'src/tests/intg')
| -rw-r--r-- | src/tests/intg/sssd_ldb.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tests/intg/sssd_ldb.py b/src/tests/intg/sssd_ldb.py index 35b389da4..399ec8a28 100644 --- a/src/tests/intg/sssd_ldb.py +++ b/src/tests/intg/sssd_ldb.py @@ -77,7 +77,6 @@ class SssdLdb(object): def get_entry_attr(self, cache_type, entry_type, name, domain, attr): dbconn = self._get_dbconn(cache_type) basedn = self._basedn(name, domain, entry_type) - print basedn res = dbconn.search(base=basedn, scope=ldb.SCOPE_BASE, attrs=[attr]) if res.count != 1: |
