diff options
Diffstat (limited to 'support/schema/gendummydata.py')
-rwxr-xr-x | support/schema/gendummydata.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/schema/gendummydata.py b/support/schema/gendummydata.py index f3dd8f9..361d1f9 100755 --- a/support/schema/gendummydata.py +++ b/support/schema/gendummydata.py @@ -87,7 +87,7 @@ def genFortune(): # load the words, and make sure there are enough words for users/pkgs # log.debug("Grabbing words from seed file...") -fp = open(SEED_FILE, "r") +fp = open(SEED_FILE, "r", encoding="utf-8") contents = fp.readlines() fp.close() if MAX_USERS > len(contents): @@ -142,7 +142,7 @@ has_tus = 0 # Just let python throw the errors if any happen # -out = open(sys.argv[1], "w") +out = open(sys.argv[1], "w", encoding="utf-8") out.write("BEGIN;\n") # Begin by creating the User statements @@ -180,7 +180,7 @@ log.debug("Number of users: %d" % (MAX_USERS-len(developers)-len(trustedusers))) log.debug("Number of packages: %d" % MAX_PKGS) log.debug("Gathering text from fortune file...") -fp = open(FORTUNE_FILE, "r") +fp = open(FORTUNE_FILE, "r", encoding="utf-8") fortunes = fp.read().split("%\n") fp.close() |