diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 53f33537..e8693ba8 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -335,8 +335,8 @@ class XmlManifest(object): | |||
335 | 335 | ||
336 | local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME) | 336 | local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME) |
337 | if os.path.exists(local): | 337 | if os.path.exists(local): |
338 | print('warning: %s is deprecated; put local manifests in %s instead' | 338 | print('warning: %s is deprecated; put local manifests in `%s` instead' |
339 | % (LOCAL_MANIFEST_NAME, LOCAL_MANIFESTS_DIR_NAME), | 339 | % (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)), |
340 | file=sys.stderr) | 340 | file=sys.stderr) |
341 | nodes.append(self._ParseManifestXml(local, self.repodir)) | 341 | nodes.append(self._ParseManifestXml(local, self.repodir)) |
342 | 342 | ||