You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In init.py
pf = "linux" if sys.platform.startswith("linux") else sys.platform
try:
---> search_paths.append(os.path.join(DEFAULT_TARGET_FOLDER[pf], "pandoc"))
except: # noqa
# not one of the know platforms...
pass
The program executes the marked line and never terminates.
The text was updated successfully, but these errors were encountered:
In init.py
pf = "linux" if sys.platform.startswith("linux") else sys.platform
try:
---> search_paths.append(os.path.join(DEFAULT_TARGET_FOLDER[pf], "pandoc"))
except: # noqa
# not one of the know platforms...
pass
The program executes the marked line and never terminates.
The text was updated successfully, but these errors were encountered: