Rev2148, Fix signing typo

This commit is contained in:
shortcutme 2017-07-13 15:03:04 +02:00
parent 87910a236b
commit dd11f87673
No known key found for this signature in database
GPG Key ID: 5B63BAE6CB9613AE
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ class Config(object):
def __init__(self, argv):
self.version = "0.5.6"
self.rev = 2147
self.rev = 2148
self.argv = argv
self.action = None
self.config_file = "zeronet.conf"

View File

@ -489,7 +489,7 @@ class ContentManager(object):
def hashFiles(self, dir_inner_path, ignore_pattern=None, optional_pattern=None):
files_node = {}
files_optional_node = {}
if not isValidRelativePath(dir_inner_path):
if not self.isValidRelativePath(dir_inner_path):
ignored = True
self.log.error("- [ERROR] Only ascii encoded directories allowed: %s" % dir_inner_path)