Skip to content

Commit

Permalink
use Utils.get_ignis_commit() instead of Utils.get_ignis_commit_hash()
Browse files Browse the repository at this point in the history
  • Loading branch information
linkfrg committed Aug 3, 2024
1 parent ec8c5bd commit 55ffb9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ignis/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def set_process_name(name):
def print_version(ctx, param, value):
if value:
ctx.exit(
print(f"Ignis {Utils.get_ignis_version()} {Utils.get_ignis_commit_hash()}")
print(f"Ignis {Utils.get_ignis_version()} {Utils.get_ignis_commit()}")
)


Expand Down
4 changes: 2 additions & 2 deletions ignis/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .file_monitor import FileMonitor
from .thread import thread, run_in_thread
from .sass import sass_compile
from .get_ignis_version import get_ignis_version, get_ignis_commit_hash
from .get_ignis_version import get_ignis_version, get_ignis_commit
from .scale_pixbuf import scale_pixbuf
from .crop_pixbuf import crop_pixbuf
from .get_paintable import get_paintable
Expand All @@ -33,4 +33,4 @@ class Utils:
get_paintable = get_paintable
get_file_icon_name = get_file_icon_name
ThreadTask = ThreadTask
get_ignis_commit_hash = get_ignis_commit_hash
get_ignis_commit = get_ignis_commit

0 comments on commit 55ffb9c

Please sign in to comment.