Commits

Ville Suoranta authored 76131383a18 Merge
Merge pull request #57 in CASA/casa from release/5.0.0 to master

* commit 'e845ec8f04b4206c0f2f1393dd6b4b31bb30428d': Modified parameter description and examples as requested Fixed formatting
No tags

gcwrap/python/scripts/carta_install.py

Modified
1 1 import re
2 2 import sys
3 3 import os
4 4 import argparse
5 5 import urllib
6 6 import urllib2
7 7 from HTMLParser import HTMLParser
8 8 from subprocess import check_output
9 9 import platform
10 10
11 +
11 12 # Supported operating system versions
12 13 osVersions = ["el6", "el7", "osx1011", "osx1012"]
13 14 script_dir = os.path.dirname(os.path.realpath(__file__))
14 15
15 16
16 17 class MyHTMLParser(HTMLParser):
17 18
18 19 links = []
19 20
20 21 def handle_starttag(self, tag, attrs):

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut