Skip to content

Commit

Permalink
Fix permissions corrupted by my NTFS backup
Browse files Browse the repository at this point in the history
and implement corrctly detection of an unavailable pandoc command
  • Loading branch information
maoschanz committed Nov 7, 2019
1 parent 9b2fcbe commit ca22b92
Show file tree
Hide file tree
Showing 15 changed files with 4 additions and 2 deletions.
Empty file modified LICENSE
100755 → 100644
Empty file.
Empty file modified POTFILES
100755 → 100644
Empty file.
Empty file modified README.md
100755 → 100644
Empty file.
Empty file modified example.css
100755 → 100644
Empty file.
Empty file modified markdown_preview.plugin
100755 → 100644
Empty file.
Empty file modified markdown_preview/__init__.py
100755 → 100644
Empty file.
3 changes: 2 additions & 1 deletion markdown_preview/export.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
BACKEND_P3MD_AVAILABLE = False

try:
subprocess.call(['which', 'pandoc'])
status = subprocess.call(['which', 'pandoc'])
assert(status == 0)
except Exception:
print("Package pandoc not installed")
BACKEND_PANDOC_AVAILABLE = False
Expand Down
Empty file.
Empty file modified markdown_preview/locale/gedit-plugin-markdown-preview.pot
100755 → 100644
Empty file.
Empty file modified markdown_preview/menus.ui
100755 → 100644
Empty file.
Empty file modified markdown_preview/prefs.py
100755 → 100644
Empty file.
Empty file modified markdown_preview/prefs.ui
100755 → 100644
Empty file.
3 changes: 2 additions & 1 deletion markdown_preview/preview.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
BACKEND_P3MD_AVAILABLE = False

try:
subprocess.call(['which', 'pandoc'])
status = subprocess.call(['which', 'pandoc'])
assert(status == 0)
except Exception:
print("Package pandoc not installed")
BACKEND_PANDOC_AVAILABLE = False
Expand Down
Empty file modified markdown_preview/preview.ui
100755 → 100644
Empty file.
Empty file modified org.gnome.gedit.plugins.markdown_preview.gschema.xml
100755 → 100644
Empty file.

1 comment on commit ca22b92

@maoschanz
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's #11

Please sign in to comment.