annotate test.py @ 1:d7a061749a84

Test commit to see if CIA triggers
author Neil Muller <drnlmuller@gmail.com>
date Sat, 05 May 2012 13:26:04 +0200
parents
children b772d357d698
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
1 #!/usr/bin/python
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
2
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
3 """Test script to be used for hghooks debugging"""
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
4
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
5 import sys
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
6
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
7 def main(args):
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
8 print args
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
9
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
10
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
11 if __name__ == "__main__":
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
12 main(sys.argv)