Changeset 255 for trunk/jobmond
- Timestamp:
- 04/27/06 11:56:08 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jobmond/jobmond.py
r254 r255 156 156 """ 157 157 158 global METRIC_MAX_VAL_LEN 159 158 160 for line in os.popen( self.binary + ' --version' ).readlines(): 159 161 … … 181 183 182 184 incompatible = 1 185 186 if version_patch < 3: 187 188 METRIC_MAX_VAL_LEN = 900 189 190 elif version_patch >= 3: 191 192 METRIC_MAX_VAL_LEN = 1400 183 193 184 194 return incompatible
Note: See TracChangeset
for help on using the changeset viewer.