From 8ef0879a1a67a4fa994bc65582d695f208541761 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 29 Mar 2010 00:08:45 +0200 Subject: [PATCH] Fix a 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