Browse Source

Tiny fix in testrunner.

Rafał Pitoń 11 years ago
parent
commit
72cc7d7598
1 changed files with 2 additions and 1 deletions
  1. 2 1
      runtests.py

+ 2 - 1
runtests.py

@@ -14,7 +14,8 @@ def runtests():
         settings_path = os.path.join(test_project_path, "settings.py")
         with open(settings_path, "r") as py_file:
             settings_file = py_file.read().replace("{{ project_name }}",
-                                                   "testproject")
+                                              "testproject")
+
         with open(settings_path, "w") as py_file:
             py_file.write(settings_file)