Skip to content

Commit

Permalink
fixed branch
Browse files Browse the repository at this point in the history
  • Loading branch information
SpenGietz committed May 7, 2020
1 parent db449f6 commit dc64e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pacu.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def check_for_updates(self):
with open('./last_update.txt', 'r') as f:
local_last_update = f.read().rstrip()

latest_update = requests.get('https://raw.githubusercontent.com/RhinoSecurityLabs/pacu/regions/last_update.txt').text.rstrip()
latest_update = requests.get('https://raw.githubusercontent.com/RhinoSecurityLabs/pacu/master/last_update.txt').text.rstrip()

local_year, local_month, local_day = local_last_update.split('-')
datetime_local = datetime.date(int(local_year), int(local_month), int(local_day))
Expand Down

0 comments on commit dc64e6a

Please sign in to comment.