~ubuntu-branches/ubuntu/utopic/adios/utopic

« back to all changes in this revision

Viewing changes to .pc/debian_paths.patch/utils/skel/bin/skel_extract.py

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-05-22 07:02:04 UTC
  • mfrom: (15.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20140522070204-on9wsl3awmau96bo
Tags: 1.6.0-5
* Don't depend on infiniband on hurd, kfreebsd-* 
* Build with serial HDF5 by default; building with mpicc.openmpi collides
  with mpipublic.h internally.
* Prime CMakeCache.txt with PYTHON_MPI4PY_INCLUDE_DIR so it is found
  on all archs to fix FTBFS. 
* Add initial bash_completion.d completions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
def parse_iteration (filename):
155
155
    #assume filename ends with .xml
156
156
    if not filename.endswith (".xml"):
157
 
        print "Warning: filename does not meet expectations, should end with .xml"
 
157
        print("Warning: filename does not meet expectations, should end with .xml")
158
158
 
159
159
    filename = filename [:-4]
160
160
 
161
161
    iteration = filename.rsplit ("_", 1)[1]
162
162
 
163
 
    print iteration
 
163
    print(iteration)
164
164
 
165
165
    return iteration
166
166