##// END OF EJS Templates
Merge pull request #1508 from minrk/i1507...
Merge pull request #1508 from minrk/i1507 fix sorting profiles in clustermanager dicts aren't orderable on Python3. In any case, these should be sorted by name, not by the ordering of the dicts themselves. closes #1507

File last commit:

r4669:45cf1867
r6273:7db18f8a merge
Show More
__init__.py
11 lines | 319 B | text/x-python | PythonLexer
try:
import argparse
# don't use system argparse if older than 1.1:
if argparse.__version__ < '1.1':
raise ImportError
else:
from argparse import *
from argparse import SUPPRESS
except (ImportError, AttributeError):
from _argparse import *
from _argparse import SUPPRESS