comparison test.py @ 3:8cb24da1f91c

Pep8 but not pyflakes clean. Should still fail
author Neil Muller <drnlmuller@gmail.com>
date Sat, 05 May 2012 16:47:09 +0200
parents b772d357d698
children 8fb524440907
comparison
equal deleted inserted replaced
2:b772d357d698 3:8cb24da1f91c
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 """Test script to be used for hghooks debugging""" 3 """Test script to be used for hghooks debugging"""
4 4
5 import sys, os 5 import sys
6 import os
6 7
7 8
8 def main(args): 9 def main(args):
9 print args 10 print args
10 11
11 12
12 if __name__ == "__main__": 13 if __name__ == "__main__":
13 main(sys.argv) 14 main(sys.argv)