Skip to content

Commit

Permalink
don't print waiting... message to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbrown committed Jul 23, 2016
1 parent 19ddcf9 commit 99ebfb0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion needy/local_configuration.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import print_function

import fcntl
import json
import os
Expand Down Expand Up @@ -29,7 +31,7 @@ def __enter__(self):
if self.__fd is None:
if not self.__blocking:
return None
print('Waiting for other needy instances to terminate...')
print('Waiting for other needy instances to terminate...', file=sys.stderr)
self.__fd = lock_file(self.__path)

with open(self.__path, 'rt') as f:
Expand Down

0 comments on commit 99ebfb0

Please sign in to comment.