summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2015-09-01 11:55:27 +0200
committeremkael <emkael@tlen.pl>2015-09-01 12:18:04 +0200
commitb636e3eb6ab2a583e32bb761f2dc0a6f3f9a9db3 (patch)
treea285556e8d1c57150562583d7f6e987be3648a48
parent3de6c090cb769c6cdf4301e1375ccbe9110f104b (diff)
* tournament path encoding/decoding fix
-rw-r--r--bidding_data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bidding_data.py b/bidding_data.py
index ea560bf..2c23035 100644
--- a/bidding_data.py
+++ b/bidding_data.py
@@ -98,7 +98,7 @@ class JFRBidding:
round_no=None,
table_no=None,
pair_numbers=None):
- return '{0}_bidding_{1:03}_{2}.txt'.format(
+ return u'{0}_bidding_{1:03}_{2}.txt'.format(
self.__tournament_prefix, board_no,
'_'.join(map(str,
self.__round_lineups[round_no][table_no]