Skip to content

Commit

Permalink
Merge pull request #87 from lsst-sqre/tickets/DM-32648
Browse files Browse the repository at this point in the history
DM-32648: Change to main branch in URLs.
  • Loading branch information
ktlim authored Nov 27, 2021
2 parents 14c3880 + 8a24ac1 commit f00ffaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions codekit/versiondb.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import textwrap

default_base_url =\
'https://raw.githubusercontent.com/lsst/versiondb/master/manifests'
'https://raw.githubusercontent.com/lsst/versiondb/main/manifests'


@public
Expand Down Expand Up @@ -39,7 +39,7 @@ class Manifest(object):
Base url to the path for `manifest` files`. Optional.
Eg.:
`https://raw.githubusercontent.com/lsst/versiondb/master/manifests`
`https://raw.githubusercontent.com/lsst/versiondb/main/manifests`
"""

def __init__(self, name, base_url=None):
Expand Down
2 changes: 1 addition & 1 deletion tests/versiondb/test_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_b3504(b3504):
responses.Response(
method='GET',
url='https://raw.githubusercontent.com/lsst/versiondb'
'/master/manifests/b3504.txt',
'/main/manifests/b3504.txt',
body=b3504,
),
)
Expand Down

0 comments on commit f00ffaa

Please sign in to comment.