Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix external resource directory structure
  • Loading branch information
mikahanninen committed Dec 12, 2012
1 parent b5b99f2 commit 0380866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rfgen.py
Expand Up @@ -227,7 +227,7 @@ def _create_test_resources(dirs, resource_files, resources_in_file, external_res
static_external_resource.close()

external_resource_path = "%s%s" % (ext_dir, "ext_R%d_Resource.txt")
external_resource_path_for_import = "%s%s%s" % (".." + os.sep, ".." + os.sep, "ext_R%d_Resource.txt")
external_resource_path_for_import = "%s%s%s%s" % (".." + os.sep, ".." + os.sep, "ext" + os.sep, "ext_R%d_Resource.txt")
for resfile_index in range(resource_files):
basename = "R%d_Resource.txt" % (resfile_index+1)

Expand Down

0 comments on commit 0380866

Please sign in to comment.