From f5a67a4df41453bed18e5d712e496993badfa571 Mon Sep 17 00:00:00 2001 From: holgern <holgernahrstaedt@gmx.de> Date: Sun, 22 Sep 2019 12:24:02 +0200 Subject: [PATCH] Prepare next version --- beem/cli.py | 4 ++-- beem/comment.py | 10 ++++++++-- beem/version.py | 2 +- beemapi/version.py | 2 +- beembase/version.py | 2 +- beemgraphenebase/version.py | 2 +- setup.py | 2 +- 7 files changed, 15 insertions(+), 9 deletions(-) diff --git a/beem/cli.py b/beem/cli.py index a86cbe8f..49cb386f 100644 --- a/beem/cli.py +++ b/beem/cli.py @@ -1657,10 +1657,10 @@ def reply(authorperm, body, account, title): account = stm.config["default_account"] if not unlock_wallet(stm): return - c = Comment(authorperm, steem_instance=stm) + if title is None: title = "" - tx = c.reply(body, title=title, author=account) + tx = stm.post(title, body, json_metadata=None, author=account, reply_identifier=authorperm) if stm.unsigned and stm.nobroadcast and stm.steemconnect is not None: tx = stm.steemconnect.url_from_tx(tx) tx = json.dumps(tx, indent=4) diff --git a/beem/comment.py b/beem/comment.py index dbd21b08..ce1c7cd3 100644 --- a/beem/comment.py +++ b/beem/comment.py @@ -283,12 +283,18 @@ class Comment(BlockchainObject): def is_main_post(self): """ Returns True if main post, and False if this is a comment (reply). """ - return self['depth'] == 0 + if 'depth' in self: + return self['depth'] == 0 + else: + return self["parent_author"] == '' def is_comment(self): """ Returns True if post is a comment """ - return self['depth'] > 0 + if 'depth' in self: + return self['depth'] > 0 + else: + return self["parent_author"] != '' @property def reward(self): diff --git a/beem/version.py b/beem/version.py index 9c92f692..ca13ec23 100644 --- a/beem/version.py +++ b/beem/version.py @@ -1,2 +1,2 @@ """THIS FILE IS GENERATED FROM beem SETUP.PY.""" -version = '0.21.1' +version = '0.22.0' diff --git a/beemapi/version.py b/beemapi/version.py index 9c92f692..ca13ec23 100644 --- a/beemapi/version.py +++ b/beemapi/version.py @@ -1,2 +1,2 @@ """THIS FILE IS GENERATED FROM beem SETUP.PY.""" -version = '0.21.1' +version = '0.22.0' diff --git a/beembase/version.py b/beembase/version.py index 9c92f692..ca13ec23 100644 --- a/beembase/version.py +++ b/beembase/version.py @@ -1,2 +1,2 @@ """THIS FILE IS GENERATED FROM beem SETUP.PY.""" -version = '0.21.1' +version = '0.22.0' diff --git a/beemgraphenebase/version.py b/beemgraphenebase/version.py index 9c92f692..ca13ec23 100644 --- a/beemgraphenebase/version.py +++ b/beemgraphenebase/version.py @@ -1,2 +1,2 @@ """THIS FILE IS GENERATED FROM beem SETUP.PY.""" -version = '0.21.1' +version = '0.22.0' diff --git a/setup.py b/setup.py index 9230119d..f1f39c79 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ except LookupError: ascii = codecs.lookup('ascii') codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs')) -VERSION = '0.21.1' +VERSION = '0.22.0' tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized'] -- GitLab