diff options
author | emkael <emkael@tlen.pl> | 2016-11-15 01:39:59 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-15 01:39:59 +0100 |
commit | d4523629cd9d22e8245334911678ec0da2759a4b (patch) | |
tree | 2373f6085cbef107a7af86c24a9c7c69d8f7782e | |
parent | eb687d908b82f0467ed3c65ad30f504ee07991f2 (diff) |
* code formatting
-rw-r--r-- | src/bidding_data.py | 4 |
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])) |