Skip to content

Commit

Permalink
Merge pull request #499 from jkloetzke/fix-498
Browse files Browse the repository at this point in the history
generators: fix crash on packages without checkout
  • Loading branch information
jkloetzke authored Dec 2, 2022
2 parents 2131482 + 7d6eb10 commit e6fe6bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pym/bob/generators/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def __init__(self, recipeName, packageName):
self.checkout = False
self.dependencies = set()

checkouts = { False : CheckoutInfo(None, None) }
checkouts = { False : CheckoutInfo(BaseScanner(), None) }
packages = {}

def collect(package, rootPackage=True):
Expand Down

0 comments on commit e6fe6bd

Please sign in to comment.