From 4c7500e24804e75ac7c7cef6661ca3e6b5ea29ff Mon Sep 17 00:00:00 2001 From: shortcutme Date: Fri, 18 Aug 2017 14:37:56 +0200 Subject: [PATCH] Fix getDirname description --- src/util/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/helper.py b/src/util/helper.py index 89e41042..4fe6bf0f 100644 --- a/src/util/helper.py +++ b/src/util/helper.py @@ -110,7 +110,7 @@ def unpackOnionAddress(packed): # Get dir from file -# Return: data/site/content.json -> data/site +# Return: data/site/content.json -> data/site/ def getDirname(path): if "/" in path: return path[:path.rfind("/") + 1]