aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/chandra_ccdgap_rect.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/chandra_ccdgap_rect.py')
-rwxr-xr-xscripts/chandra_ccdgap_rect.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/chandra_ccdgap_rect.py b/scripts/chandra_ccdgap_rect.py
index 60bcdac..d95129a 100755
--- a/scripts/chandra_ccdgap_rect.py
+++ b/scripts/chandra_ccdgap_rect.py
@@ -1,6 +1,5 @@
#!/usr/bin/python
-
import sys
import math
import re
@@ -71,10 +70,11 @@ def poly2rect(plist):
if __name__=='__main__':
if len(sys.argv)!=2:
- print("Usage:%s %s"%(sys.argv[0]," <input regfile, including only polygens>"))
+ print("Usage:")
+ print(" %s <input regfile (only polygens)>" % sys.argv[0])
sys.exit()
for i in open(sys.argv[1]):
if re.match('.*olygon',i):
reg=poly2rect(parse_poly(i))
print(reg)
-
+