home
·
contact
·
privacy
projects
/
ledgplom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
ed7f631
)
Minor bug fix.
master
author
Christian Heller
<c.heller@plomlompom.de>
Thu, 6 Mar 2025 01:35:50 +0000
(
02:35
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Thu, 6 Mar 2025 01:35:50 +0000
(
02:35
+0100)
src/run.py
patch
|
blob
|
history
diff --git
a/src/run.py
b/src/run.py
index 626757506d18a632918223250bcedefefd90a616..92a136f925438ee4fa51666fe8b6feaf85de6373 100755
(executable)
--- a/
src/run.py
+++ b/
src/run.py
@@
-182,7
+182,7
@@
class DatLine(Dictable):
in self.comment[len(PREFIX_DEF):].split(';')]
first_part_parts = parts[0].split(maxsplit=1)
account_name = first_part_parts[0]
in self.comment[len(PREFIX_DEF):].split(';')]
first_part_parts = parts[0].split(maxsplit=1)
account_name = first_part_parts[0]
- desc = first_part_parts[1] if len(first_part_parts) >
0
else ''
+ desc = first_part_parts[1] if len(first_part_parts) >
1
else ''
instructions[account_name] = desc
return instructions
instructions[account_name] = desc
return instructions