Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
norstbox
gajim
Commits
c9cc45a7
Commit
c9cc45a7
authored
19 years ago
by
nkour
Browse files
Options
Downloads
Patches
Plain Diff
work with special tigris build that workarounds vs bug on .svn; eg look for _svn too
parent
ba54aa96
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/gajim.py
+3
-3
3 additions, 3 deletions
src/common/gajim.py
with
3 additions
and
3 deletions
src/common/gajim.py
+
3
−
3
View file @
c9cc45a7
...
...
@@ -41,10 +41,10 @@ import common.logger
logger
=
common
.
logger
.
Logger
()
# init the logger
if
os
.
name
==
'
nt
'
:
if
'
.svn
'
not
in
os
.
listdir
(
'
.
'
):
# we are normal users (not svn users)
DATA_DIR
=
'
data
'
else
:
if
'
.svn
'
in
os
.
listdir
(
'
.
'
)
or
'
_svn
'
in
os
.
listdir
(
'
.
'
):
DATA_DIR
=
os
.
path
.
join
(
'
..
'
,
'
data
'
)
else
:
# we are normal users (not svn users)
DATA_DIR
=
'
data
'
try
:
# Documents and Settings\[User Name]\Application Data\Gajim
LOGPATH
=
os
.
path
.
join
(
os
.
environ
[
'
appdata
'
],
'
Gajim
'
,
'
Logs
'
)
# deprecated
...
...
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