Skip to content

Commit

Permalink
Update __version__ reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Mar 4, 2024
1 parent becab35 commit ba5de1b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hookee/hookeemanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

import click

from hookee.conf import Config, VERSION
from hookee import __version__
from hookee.conf import Config
from hookee.exception import HookeeError, HookeeConfigError
from hookee.pluginmanager import PluginManager
from hookee.server import Server
Expand Down Expand Up @@ -124,7 +125,7 @@ def stop(self):

def print_hookee_banner(self):
self.print_util.print_open_header("", "=")
self.print_util.print_basic(banner.format(version=VERSION), color="green", bold=True)
self.print_util.print_basic(banner.format(version=__version__), color="green", bold=True)
self.print_util.print_basic()
self.print_util.print_close_header("=", blank_line=False)

Expand Down

0 comments on commit ba5de1b

Please sign in to comment.