Skip to content

Commit

Permalink
fix pair error argument
Browse files Browse the repository at this point in the history
  • Loading branch information
quillcraftsman committed Oct 2, 2024
1 parent cd90daa commit e1f2cb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cactus/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def domain_list(self, path, config):
site = self.Site(path, config)
site.domain_list()

def update_config(self, path, config):
def update_config(self, pair, path, config):
site = self.Site(path, config)
site.update_config(path)
site.update_config(pair)


def parse_arguments(cli, args):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_python_lib():
return get_path(name)

PACKAGE_NAME = 'lava-cactus'
VERSION = "2.0.0"
VERSION = "2.0.1"
SKELETON_FOLDERS = [
'pages',
'plugins',
Expand Down

0 comments on commit e1f2cb2

Please sign in to comment.