Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 83294e6

Browse files
committed
Merge pull request #2 from smathot/master
Fix to allow Ubuntu packaging
2 parents 08d0f4e + 77bb7e0 commit 83294e6

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
datamerger (1.02-ubuntu2) raring; urgency=low
2+
3+
* Numerous bugfixes
4+
5+
-- Sebastiaan Mathot <s.mathot@cogsci.nl> Wed, 16 Oct 2013 17:47:32 +0200
6+
17
datamerger (1.0-ubuntu5) precise; urgency=low
28

39
* Initial release.

libdatamerger/datamerger_ui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def get_resource_loc(item):
3838
basedir = sys._MEIPASS
3939
return os.path.join(basedir,"resources",item)
4040
elif os.name == 'posix' and os.path.exists('/usr/share/datamerger/resources/'):
41-
return '/usr/share/datamerger/resources/'
41+
return os.path.join('/usr/share/datamerger/resources/', item)
4242
else:
4343
basedir = os.path.dirname(__file__)
4444
return os.path.join(basedir,"../resources",item)

0 commit comments

Comments
 (0)