From 555bd293eac187b673379d96bb9c1cd05ed459f1 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 5 Feb 2015 14:40:02 -0500 Subject: [PATCH] Fix tar layer format comment --- util/tarlayerformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/tarlayerformat.py b/util/tarlayerformat.py index 3e195a616..111e0f731 100644 --- a/util/tarlayerformat.py +++ b/util/tarlayerformat.py @@ -45,7 +45,7 @@ class TarLayerFormat(object): clone = copy.deepcopy(tar_info) clone.name = os.path.join(self.path_prefix, clone.name) - # If the entry is a link of some kind, and it is not relative, then prefix it as well. + # If the entry is a *hard* link, then prefix it as well. Soft links are relative. if clone.linkname and clone.type == tarfile.LNKTYPE: clone.linkname = os.path.join(self.path_prefix, clone.linkname)