Skip to content

Commit

Permalink
they keep popping up
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 30, 2015
1 parent de57bad commit 6fe7dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luigi/target.py
Expand Up @@ -263,7 +263,7 @@ def __init__(self, path, timeout=10, delay=.05):
self.delay = delay
self.lockfile = "%s.lock" % self.path
self.acquire()
super(AtomicLocalFile, self).__init__(io.FileIO(self.path, 'a'))
super(AtomicLocalFileAppend, self).__init__(io.FileIO(self.path, 'a+'))

def __exit__(self, exc_type, exc, traceback):
if exc_type:
Expand Down

0 comments on commit 6fe7dc8

Please sign in to comment.