Skip to content

Commit

Permalink
Fixed a bug in desktop_service.py
Browse files Browse the repository at this point in the history
  • Loading branch information
markducks committed Nov 29, 2023
1 parent c602e9e commit e60316c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions embasp/platforms/desktop/desktop_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def start_sync(self, programs, options):
option = ""
for o in options:
if o is not None:
option += o.get_options()
option += o.get_separator()
option += str(o.get_options())
option += str(o.get_separator())
else:
print("Warning : wrong " +
str(OptionDescriptor().__class__.__name__))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "embasp-python"
version = "8.1.1"
version = "8.1.2"
description = "EmbASP is a framework for the integration of Logic Programming in external systems"
readme = "README.md"
license = {file = "LICENSE"}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

setup(name='EmbASP',
version='8.1.1',
version='8.1.2',
description='EmbASP',
long_description=open('README.md').read(),
author='Department of Mathematics and Computer Science, University of Calabria',
Expand Down

0 comments on commit e60316c

Please sign in to comment.