1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-13 08:59:08 +03:00

Avoid use of parentheses in Python import statements, as it's not supported by Python2.3.

This commit is contained in:
Jelmer Vernooij
2008-12-19 21:47:31 +01:00
parent af138af9e2
commit 6998ef4fe0
4 changed files with 8 additions and 10 deletions

View File

@ -18,8 +18,8 @@
#
import unittest
from samba.samba3 import (GroupMappingDatabase, Registry, PolicyDatabase, SecretsDatabase, TdbSam,
WinsDatabase, SmbpasswdFile, ACB_NORMAL, IdmapDatabase, SAMUser)
from samba.samba3 import GroupMappingDatabase, Registry, PolicyDatabase, SecretsDatabase, TdbSam
from samba.samba3 import WinsDatabase, SmbpasswdFile, ACB_NORMAL, IdmapDatabase, SAMUser
import os
DATADIR=os.path.join(os.path.dirname(__file__), "../../../../../testdata/samba3")