Changeset 1260 for dassldapsync/dassldapsync.py
- Timestamp:
- May 3, 2022, 7:55:52 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dassldapsync/dassldapsync.py
r1259 r1260 2 2 # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 3 3 4 from __future__ import print_function 5 4 6 # core modules 5 7 import argparse 6 from configparser import ConfigParser 8 try: 9 from configparser import ConfigParser 10 except ImportError: 11 from ConfigParser import ConfigParser 7 12 import logging 8 13 from pprint import pprint
Note:
See TracChangeset
for help on using the changeset viewer.