Advertisement
Guest User

Untitled

a guest
Nov 12th, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. @@ -408,7 +408,8 @@ start = time.clock()
  2. import re #Needed for various string handling
  3. import os #Used to grab the list of files
  4. settings = readStatements("settings")
  5. -path = settings["path"].replace("\\", "/")
  6. +path = settings["path"].replace('\\', "")
  7. +#path = settings["path"].replace("\\", "/")
  8. folder = settings["folder"]
  9. specificFile = settings["file"]
  10. if folder == "decisions":
  11. @@ -425,7 +426,7 @@ try:
  12. #Dictionaries of relevant values
  13. provinces = readDefinitions("prov_names")
  14. countries = readDefinitions("countries")
  15. - lookup = readDefinitions("eu4")
  16. + lookup = readDefinitions("EU4")
  17. lookup.update(readDefinitions("text"))
  18. lookup.update(readDefinitions("opinions"))
  19. lookup.update(readDefinitions("powers_and_ideas"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement