view test.py @ 26:5207a0a39f43

test commit
author Neil Muller <drnlmuller@gmail.com>
date Tue, 02 Feb 2021 22:10:04 +0200
parents 4645249b8f5e
children 5c38e4f82285
line wrap: on
line source

#!/usr/bin/python

"""Test script to be used for hghooks debugging"""

import sys


def main(args):
    print args
    return None


def help():
    print("You're on your own here")
    print("Really")


if __name__ == "__main__":
    main(sys.argv)