File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
1.0.2:
2
2
- Added commodity name conversion before uploading to EDDN
3
+ - Changed ConfigParser to RawConfigParser to avoid interpolation
3
4
4
5
1.0.1:
5
6
- Better ship name retrieval
Original file line number Diff line number Diff line change 7
7
import getpass
8
8
import edce .error
9
9
10
- Config = configparser .ConfigParser ()
10
+ Config = configparser .RawConfigParser ()
11
11
Config .read ('edce.ini' )
12
12
13
13
def ConfigSectionMap (section ):
@@ -41,7 +41,7 @@ def performSetup():
41
41
password = getpass .getpass ('Frontier Store Password: ' ).strip ()
42
42
enableEDDN = input ("Send market data to EDDN. No private information is sent. [Y/n]: " ).strip ().lower ()
43
43
44
- Config = configparser .ConfigParser ()
44
+ Config = configparser .RawConfigParser ()
45
45
46
46
Config .add_section ('login' )
47
47
Config .set ('login' ,'username' ,username )
You can’t perform that action at this time.
0 commit comments