Mercurial > repos > holtgrewe > ngs_roi
diff roi_table.py @ 5:170e48a55078 draft
Uploaded
| author | holtgrewe |
|---|---|
| date | Fri, 28 Jun 2013 05:32:20 -0400 |
| parents | 1a5ea7128b6a |
| children |
line wrap: on
line diff
--- a/roi_table.py Tue May 14 04:52:22 2013 -0400 +++ b/roi_table.py Fri Jun 28 05:32:20 2013 -0400 @@ -17,7 +17,10 @@ # TODO(holtgrew): from __future__ use print_function -import argparse +try: + import argparse +except ImportError: + import argparse26 as argparse import math import os.path import sys
