From 307f42a4e98272337c6df4cd9b9576a14bdf69d5 Mon Sep 17 00:00:00 2001 From: lars Date: Sat, 10 Feb 2007 00:19:38 +0000 Subject: [PATCH] ugly typo --- bin/CryptoBoxRootActions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/CryptoBoxRootActions b/bin/CryptoBoxRootActions index 05c80d7..0f2afc8 100755 --- a/bin/CryptoBoxRootActions +++ b/bin/CryptoBoxRootActions @@ -174,7 +174,7 @@ def isWriteable(path, force_dev_type=None): if trustUID == 0: return True ## is the path owned by us? - if os.stat(path)[4] == trustUID(): + if os.stat(path)[4] == trustUID: return True ## set the default groups of the caller for the check (restore them later) savedGroups = os.getgroups()