~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/yui-deps.py

Don't assert that the YUI dep already exists; it might not have been built yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
"""Print the YUI modules we are using."""
7
7
 
8
 
from os.path import isfile
9
8
from sys import argv
10
9
 
11
10
 
116
115
            yui_dep_path = "%s/%s" % (yui_root, yui_dep)
117
116
        else:
118
117
            yui_dep_path = "%s/%s%s" % (yui_root, yui_dep, ext)
119
 
        assert isfile(yui_dep_path), (
120
 
            "%s does not exist or is not a file." % yui_dep_path)
121
118
        print yui_dep_path