Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #36 from takkii/develop
Browse files Browse the repository at this point in the history
Update.
  • Loading branch information
takkii authored Aug 27, 2023
2 parents d2b6b40 + 6594dc3 commit e85ba77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rplugin/python3/deoplete/sources/phantom.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def gather_candidates(self, context):
py_major = sys.version_info[0]
py_minor = sys.version_info[1]

if py_major == 3 and py_minor > 5:
if py_major == 3 and py_minor > 4:
# Settings, Config path is true/false change.
config_load: Optional[str] = '~/config/load.yml'
plug_config: Optional[
Expand Down Expand Up @@ -75,7 +75,7 @@ def gather_candidates(self, context):
else:
raise ValueError("None, Please Check the Config Folder")
else:
raise ValueError("Python Version Check, >= 3.5")
raise ValueError("Python Version Check, 3.5 or higher.")

# TraceBack.
except Exception:
Expand Down

0 comments on commit e85ba77

Please sign in to comment.