From 4b8d5f43cc2593621f1943801f586f07c2eab13f Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 8 Apr 2010 14:46:46 +0200 Subject: [PATCH] webapp: Fix syntax error. --- www/webapp/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/webapp/handlers.py b/www/webapp/handlers.py index 3063c462..88944e23 100644 --- a/www/webapp/handlers.py +++ b/www/webapp/handlers.py @@ -227,7 +227,7 @@ class SourceHandler(BaseHandler): if file in [f["name"] for f in fileobjects]: continue - hash = self.hash_db.get_hash(os.path.join(dir, file) + hash = self.hash_db.get_hash(os.path.join(dir, file)) if not hash: hash = "0000000000000000000000000000000000000000" -- 2.47.3