Changeset 1260


Ignore:
Timestamp:
May 3, 2022, 7:55:52 PM (2 years ago)
Author:
joergs
Message:

adapted a bit for Python 2, but still not runnable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dassldapsync/dassldapsync.py

    r1259 r1260  
    22# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
    33
     4from __future__ import print_function
     5
    46# core modules
    57import argparse
    6 from   configparser import ConfigParser
     8try:
     9    from configparser import ConfigParser
     10except ImportError:
     11    from ConfigParser import ConfigParser
    712import logging
    813from   pprint import pprint
Note: See TracChangeset for help on using the changeset viewer.