Skip to content

Commit

Permalink
Print with parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
pagecp authored Apr 16, 2018
1 parent 57d238d commit 55bea87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions icclim/util/util_nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,10 @@ def check_unlimited(infile):
dim_name = dim
num_unlimited = num_unlimited + 1
if dim_unlimited == False:
print 'Warning: There is no unlimited dimension. File should be fixed if possible to set time as the unlimited dimension.'
print 'Warning: Using time as the aggregation dimension. Hope this is what you want to do...'
print('Warning: There is no unlimited dimension. File should be fixed if possible to set time as the unlimited dimension.')
print('Warning: Using time as the aggregation dimension. Hope this is what you want to do...')
if num_unlimited > 1:
print 'Warning: There are more than one unlimited dimension to aggregate. Using '+dim_name+' to aggregate.'
print('Warning: There are more than one unlimited dimension to aggregate. Using '+dim_name+' to aggregate.')

nc.close()

Expand Down

0 comments on commit 55bea87

Please sign in to comment.