Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
fireundubh committed May 30, 2021
2 parents 7168f10 + e6b61df commit 15e175e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyro/PapyrusProject.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def _get_remote_path(self, node: etree.ElementBase) -> str:
PapyrusProject.log.error(message)
sys.exit(1)
except PermissionError as e:
PapyrusProject.log.error(e.strerror)
PapyrusProject.log.error(e)
sys.exit(1)

url_path = self.remote.create_local_path(node.text)
Expand Down
2 changes: 1 addition & 1 deletion pyro/ProcessManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def run_compiler(command: str) -> ProcessState:
'Starting'
)

line_error = re.compile(r'(.*)(\(\d+,\d+\)):\s+(.*)')
line_error = re.compile(r'(.*)(\(-?\d*\.?\d+,-?\d*\.?\d+\)):\s+(.*)')

error_count = 0

Expand Down

0 comments on commit 15e175e

Please sign in to comment.