Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-11-10 15:20:22 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-11-10 15:20:22 (GMT)
commit32726e020b14edb72547acff779d7ab15f9dcd8d (patch)
tree59963f719942cc3c531c024e3161e8eaaba148fc
parent8487ee1e1f4e18b35cdcbad4f866dacd2df8f35a (diff)
Correct comment in the source code.
-rw-r--r--src/olpc/datastore/backingstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/olpc/datastore/backingstore.py b/src/olpc/datastore/backingstore.py
index c9ef05a..9021448 100644
--- a/src/olpc/datastore/backingstore.py
+++ b/src/olpc/datastore/backingstore.py
@@ -403,7 +403,7 @@ class FileBackingStore(BackingStore):
if e.errno != errno.EPERM:
raise
- # Try to link from the original file to the targetpath. This can work if
+ # Try to link from the original file to the targetpath. This can fail if
# the file is in a different filesystem. Do a copy instead.
try:
os.link(path, targetpath)