Skip to content

Commit 228f62d

Browse files
committed
Minor fix
1 parent 6186a88 commit 228f62d

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/blenderbim/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ endif
6161
cp -r dist/working/io_import_scene_ifc/ifcopenshell dist/blenderbim/libs/site/packages/
6262

6363
# See bug #812
64-
cd dist/working && wget https://raw.githubusercontent.com/IfcOpenShell/IfcOpenShell/v0.6.0/src/ifcblenderexport/occ_utils.py
64+
cd dist/working && wget https://raw.githubusercontent.com/IfcOpenShell/IfcOpenShell/v0.6.0/src/blenderbim/occ_utils.py
6565
cd dist/working && mv occ_utils.py ../blenderbim/libs/site/packages/ifcopenshell/geom/occ_utils.py
6666
rm -rf dist/working
6767

src/blenderbim/blenderbim/bim/data/templates/titleblocks/A1.svg

Lines changed: 1 addition & 1 deletion
Loading

src/blenderbim/blenderbim/bim/data/templates/titleblocks/A2.svg

Lines changed: 1 addition & 1 deletion
Loading

src/blenderbim/blenderbim/bim/data/templates/titleblocks/A3.svg

Lines changed: 1 addition & 1 deletion
Loading

src/blenderbim/docs/blenderbim/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ how to use Git, you can also stay up to date like so:
7373
$ git checkout v0.6.0
7474

7575
Then, just copy the files from the source code's
76-
``src/ifcblenderexport/blenderbim/`` folder and replace the files in your
76+
``src/blenderbim/blenderbim/`` folder and replace the files in your
7777
Blender add-on's ``blenderbim/`` folder.
7878

7979
Restart Blender for the changes to take effect. In ``Edit > Preferences >

src/blenderbim/get_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def describe(self):
3737
f.write(json.dumps(self.enum_descriptions, indent=4))
3838

3939
def get_html_sources(self):
40-
html_dir = "/home/dion/Projects/IfcOpenShell/src/ifcblenderexport/descriptions/IFC4_3/RC1/HTML"
40+
html_dir = "/home/dion/Projects/IfcOpenShell/src/blenderbim/descriptions/IFC4_3/RC1/HTML"
4141
for filename in Path(html_dir).rglob("*.htm"):
4242
if "lexical" not in str(filename):
4343
continue

src/ifcbimtester/patch/model_core.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- behave/model_core.py 2018-02-26 02:53:03.000000000 +1100
2-
+++ /home/dion/Projects/IfcOpenShell/src/ifcblenderexport/patch-behave-model_core.py 2021-03-21 11:57:27.625195794 +1100
2+
+++ /home/dion/Projects/IfcOpenShell/src/blenderbim/patch-behave-model_core.py 2021-03-21 11:57:27.625195794 +1100
33
@@ -269,7 +269,10 @@
44
class BasicStatement(object):
55
def __init__(self, filename, line, keyword, name):

src/ifcbimtester/patch/runner_util.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- behave/runner_util.py 2018-02-26 02:53:03.000000000 +1100
2-
+++ /home/dion/Projects/IfcOpenShell/src/ifcblenderexport/patch-behave-runner_util.py 2021-03-21 11:58:29.777638958 +1100
2+
+++ /home/dion/Projects/IfcOpenShell/src/blenderbim/patch-behave-runner_util.py 2021-03-21 11:58:29.777638958 +1100
33
@@ -381,7 +381,10 @@
44
locals_["__file__"] = filename
55
with open(filename, "rb") as f:

src/ifccobie/get_maintainable_assets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import ifcopenshell
33
import ifcopenshell.util.selector
44

5-
with open("../ifcblenderexport/blenderbim/bim/schema/entity_descriptions.json") as f:
5+
with open("../blenderbim/blenderbim/bim/schema/entity_descriptions.json") as f:
66
entity_descriptions = json.load(f)
7-
with open("../ifcblenderexport/blenderbim/bim/schema/enum_descriptions.json") as f:
7+
with open("../blenderbim/blenderbim/bim/schema/enum_descriptions.json") as f:
88
enum_descriptions = json.load(f)
99

1010
print('{|class="wikitable"')

0 commit comments

Comments
 (0)