Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
thg-hgtk
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
TortoiseHg
thg-hgtk
Commits
cf901e350a2e
Commit
cf901e350a2e
authored
13 years ago
by
Steve Borho
Browse files
Options
Downloads
Patches
Plain Diff
workbench: folder history revision set queries need two asterisks
--HG-- branch : stable
parent
c997ed09ef96
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tortoisehg/hgqt/workbench.py
+1
-1
1 addition, 1 deletion
tortoisehg/hgqt/workbench.py
with
1 addition
and
1 deletion
tortoisehg/hgqt/workbench.py
+
1
−
1
View file @
cf901e35
...
...
@@ -686,7 +686,7 @@ def run(ui, *pats, **opts):
for
pat
in
pats
:
f
=
repo
.
wjoin
(
pat
)
if
os
.
path
.
isdir
(
f
):
q
.
append
(
'
file(
"
%s/*
"
)
'
%
pat
)
q
.
append
(
'
file(
"
%s/*
*
"
)
'
%
pat
)
elif
os
.
path
.
isfile
(
f
):
q
.
append
(
'
file(
"
%s
"
)
'
%
pat
)
w
.
setRevsetFilter
(
root
,
'
or
'
.
join
(
q
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment