Skip to content

Commit

Permalink
Fix parsing issue when using new format and date.
Browse files Browse the repository at this point in the history
  • Loading branch information
huserben committed Oct 11, 2024
1 parent 507c871 commit 548ea55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flowpulse/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def create_process_behaviour_charts():

def parse_history_argument(work_tracking_system, config):
try:
history = int(config[work_tracking_system]["history"])
history = config[work_tracking_system]["history"]
except:
# Backward compatibility for using old parameter name
history = int(config[work_tracking_system]["historyInDays"])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='flowpulse',
version='1.0.6',
version='1.0.7',
packages=find_packages(),
include_package_data=True,
package_data={
Expand Down

0 comments on commit 548ea55

Please sign in to comment.