Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekStewie committed Nov 7, 2022
1 parent 829a53d commit beed1db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
</value>
</assignmentItems>
<assignmentItems>
<assignToReference>clonedAnimalCompletedRecord.IsCloned__c</assignToReference>
<assignToReference>clonedAnimalCompletedRecord.%%%NAMESPACED_ORG%%%IsCloned__c</assignToReference>
<operator>Assign</operator>
<value>
<booleanValue>false</booleanValue>
Expand Down
4 changes: 2 additions & 2 deletions scripts/AddNameSpace.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def update_files():

for file in all_files:

replace_file_text(file, NAMESPACE_REPLACEMENT, "")

# Search for all references within file
with open(file, "r") as temp_file:
temp_file.seek(0)
Expand All @@ -64,8 +66,6 @@ def update_files():

print(f"\n**Processing File**: {file}")

replace_file_text(file, NAMESPACE_REPLACEMENT, "")

# De-dupe List
original_count = len(items_to_replace)
items_to_replace = list(dict.fromkeys(items_to_replace))
Expand Down

0 comments on commit beed1db

Please sign in to comment.