Procházet zdrojové kódy

Fix getDirname description

shortcutme před 6 roky
rodič
revize
4c7500e248
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/util/helper.py

+ 1 - 1
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]