Fix a typo in fetch_sources.py.
authorDejan Mircevski <deki@google.com>
Thu, 30 Jul 2015 17:12:09 +0000 (13:12 -0400)
committerDejan Mircevski <deki@google.com>
Thu, 30 Jul 2015 17:21:10 +0000 (13:21 -0400)
external/fetch_sources.py

index 349bb6c..ff0c78e 100644 (file)
@@ -88,7 +88,7 @@ def extract (pkg):
 
        extractedEntries = os.listdir(tmpPath)
        if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
-               raise Exception("%s doesn't contain single top-level directory") % pkg.filename
+               raise Exception("%s doesn't contain single top-level directory" % pkg.filename)
 
        topLevelPath = os.path.join(tmpPath, extractedEntries[0])