diff options
Diffstat (limited to 'code/fsobject.py')
-rw-r--r-- | code/fsobject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/fsobject.py b/code/fsobject.py index 6e93140f..f4268ef0 100644 --- a/code/fsobject.py +++ b/code/fsobject.py @@ -83,5 +83,5 @@ class FSObject(object): return clone def stop_if_frozen(self): - if self.frozen: raise FrozenException() + if self.frozen: raise FrozenException('Cannot modify datastructure while it is frozen') |