~ubuntu-branches/ubuntu/trusty/freeipa/trusty-proposed

« back to all changes in this revision

Viewing changes to ipalib/util.py

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2013-09-03 17:13:27 UTC
  • Revision ID: package-import@ubuntu.com-20130903171327-a47t1segjij5yjez
Tags: 3.3.4-0ubuntu1
Merge from unreleased debian git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
        if not name.endswith(suffix):
82
82
            continue
83
83
        pyfile = os.path.join(src_dir, name)
84
 
        if os.path.islink(pyfile) or not os.path.isfile(pyfile):
 
84
        if not os.path.isfile(pyfile):
85
85
            continue
86
86
        module = name[:-len(suffix)]
87
87
        if module == '__init__':