Skip to content

Commit ffd34e4

Browse files
committed
Renamed “in user spaces” to “in user accounts.”
1 parent 5d7f6d8 commit ffd34e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

updater/reports/ReportRepositoryHistory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ def subquery(self, userType):
3131

3232
return query
3333

34-
# Collects the number of repositories in total, in organizations, and in user spaces
34+
# Collects the number of repositories in total, in organizations, and in user accounts
3535
def query(self):
3636
query = '''
3737
SELECT
3838
"''' + str(self.yesterday()) + '''" AS date,
3939
total.count AS total,
4040
organizationSpace.count AS "in organizations",
41-
userSpace.count AS "in user spaces"
41+
userSpace.count AS "in user accounts"
4242
FROM
4343
(''' + self.subquery(None) + ''') AS total,
4444
(''' + self.subquery("Organization") + ''') AS organizationSpace,

0 commit comments

Comments
 (0)