File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ v0.3.1 (unreleased):
2
+
3
+ - Fixed a bug related to Python 3 compatibility.
4
+
1
5
v0.3 (released June 7, 2015):
2
6
3
7
- Added support for Python 3.
Original file line number Diff line number Diff line change 10
10
__author__ = "Ben Kurtovic"
11
11
__copyright__ = "Copyright (C) 2011-2015 Ben Kurtovic"
12
12
__license__ = "MIT License"
13
- __version__ = "0.3"
13
+ __version__ = "0.3.1.dev0 "
14
14
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def _load_config_file():
46
46
_migrate_old_config_path ()
47
47
config = configparser .SafeConfigParser ()
48
48
# Don't lowercase option names, because we are storing paths there:
49
- config .optionxform = str
49
+ config .optionxform = lambda opt : opt
50
50
config .read (_get_config_path ())
51
51
return config
52
52
@@ -55,7 +55,7 @@ def _save_config_file(config):
55
55
_migrate_old_config_path ()
56
56
cfg_path = _get_config_path ()
57
57
_ensure_dirs (cfg_path )
58
- with open (cfg_path , "wb " ) as config_file :
58
+ with open (cfg_path , "w " ) as config_file :
59
59
config .write (config_file )
60
60
61
61
def get_bookmarks ():
You can’t perform that action at this time.
0 commit comments