##// END OF EJS Templates
exchange: allow passing no includes/excludes to `pull()`...
Martin von Zweigbergk -
r51423:b361e9da default
parent child Browse files
Show More
@@ -1637,7 +1637,7 b' def pull('
1637 1637
1638 1638 # We allow the narrow patterns to be passed in explicitly to provide more
1639 1639 # flexibility for API consumers.
1640 if includepats or excludepats:
1640 if includepats is not None or excludepats is not None:
1641 1641 includepats = includepats or set()
1642 1642 excludepats = excludepats or set()
1643 1643 else:
General Comments 0
You need to be logged in to leave comments. Login now