view test.py @ 25:4645249b8f5e

Test after Ubuntu upgrade
author Neil Muller <drnlmuller@gmail.com>
date Mon, 01 Feb 2021 12:25:02 +0200
parents df39b71bd80a
children 5207a0a39f43
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")


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