view silvermirror/scripts/reconcile_unison.py @ 37:1877e2cb1118

remove commented out function; we dont use it and it probably needs to be rewritten anyway
author Jeff Hammel <k0scist@gmail.com>
date Sun, 15 Feb 2015 18:02:43 +0000
parents 54e9c335e239
children
line wrap: on
line source

#!/usr/bin/env python

'''
reconcile unison with remote sources
'''

import optparse
import os
import sys

here = os.path.dirname(os.path.realpath(__file__))

def main(args=sys.argv[1:]):

        usage = '%prog [options]'
            parser = optparse.OptionParser(usage=usage, description=__doc__)
                options, args = options.parse_args(args)

                if __name__ == '__main__':
                        main()