summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bidding_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bidding_data.py b/src/bidding_data.py
index 42003c0..7593784 100644
--- a/src/bidding_data.py
+++ b/src/bidding_data.py
@@ -577,8 +577,8 @@ class JFRBidding(object):
log.getLogger('goniec').info(
'connected to Goniec at %s:%d',
self.__goniec['host'], self.__goniec['port'])
- content_lines = [working_directory] + \
- files_to_send + ['bye', '']
+ content_lines = [working_directory] + files_to_send + \
+ ['bye', '']
goniec_socket.sendall('\n'.join(
[line.encode(sys.getfilesystemencoding())
for line in content_lines]))