Skip to content

Commit

Permalink
adding ensure_change_list to get_files_in_changelist
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvaes committed Mar 13, 2024
1 parent 31b4f91 commit f56842a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions p4cmd/p4cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,7 @@ def get_files_in_changelist(self, changelist="default"):
:param changelist: *string* or *int* changelist number
:return: *list* of depot paths
"""
changelist = self.__ensure_changelist(changelist)
depot_paths = []

info_dicts = self.run_cmd("opened", args=["-c", changelist])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="p4cmd",
version="2.4.7",
version="2.4.8",
author="Niels Vaes",
license='MIT',
author_email="[email protected]",
Expand Down

0 comments on commit f56842a

Please sign in to comment.