Skip to content

Commit

Permalink
remove more emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna committed Oct 29, 2023
1 parent b67d7af commit 8084e6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion patch_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def patch_installer(tag):
print(f"Patched metadata v{tag} ")
file.close()

with open(plugin_start_file, "r") as file: # , encoding="utf8"
with open(plugin_start_file, "r", encoding="utf8") as file:
lines = file.readlines()
for i, line in enumerate(lines):
if "self.version = " in line:
Expand Down
6 changes: 3 additions & 3 deletions speckle_qgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ def run(self):
# if the standard QGIS libraries are used
if urllib3.__version__ == "1.25.11" and requests.__version__ == "2.24.0":
logToUser(
"Dependencies versioning error.\nClick here for details.",
"Dependencies versioning error.\nClick here for details.",
url="dependencies_error",
plugin=self.dockwidget,
)
Expand Down Expand Up @@ -1084,7 +1084,7 @@ def handleStreamCreate(self, account, str_name, description, is_public):
except SpeckleException as ex:
if "already connected" in ex.message:
logToUser(
"Dependencies versioning error.\nClick here for details.",
"Dependencies versioning error.\nClick here for details.",
url="dependencies_error",
plugin=self.dockwidget,
)
Expand Down Expand Up @@ -1146,7 +1146,7 @@ def handleBranchCreate(self, br_name, description):
except SpeckleException as ex:
if "already connected" in ex.message:
logToUser(
"Dependencies versioning error.\nClick here for details.",
"Dependencies versioning error.\nClick here for details.",
url="dependencies_error",
plugin=self.dockwidget,
)
Expand Down

0 comments on commit 8084e6e

Please sign in to comment.