mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Bumped dependencies.
This commit is contained in:
@@ -60,10 +60,10 @@ pygments_style = "manni"
|
||||
# ==============================================================================
|
||||
# Restructured Text settings
|
||||
# ==============================================================================
|
||||
prologPath = "prolog.inc"
|
||||
prologPath = Path("prolog.inc")
|
||||
try:
|
||||
with open(prologPath, "r") as prologFile:
|
||||
rst_prolog = prologFile.read()
|
||||
with prologPath.open("r", encoding="utf-8") as fileHandle:
|
||||
rst_prolog = fileHandle.read()
|
||||
except Exception as ex:
|
||||
print(f"[ERROR:] While reading '{prologPath}'.")
|
||||
print(ex)
|
||||
|
||||
Reference in New Issue
Block a user