diff --git a/se/cocoa/Info.plist b/se/cocoa/Info.plist
index d24efa47..37ce5973 100644
--- a/se/cocoa/Info.plist
+++ b/se/cocoa/Info.plist
@@ -23,7 +23,7 @@
CFBundleSignature
hsft
CFBundleVersion
- 2.7.1
+ 2.7.2
NSMainNibFile
MainMenu
NSPrincipalClass
diff --git a/se/cocoa/py/gen.py b/se/cocoa/py/gen.py
index 2279eb36..6195927d 100644
--- a/se/cocoa/py/gen.py
+++ b/se/cocoa/py/gen.py
@@ -4,12 +4,15 @@ import os
import os.path as op
import shutil
-print "Cleaning build and dist"
+from hsutil.build import print_and_do
+
+os.chdir('dupeguru')
+print_and_do('python gen.py')
+os.chdir('..')
+
if op.exists('build'):
shutil.rmtree('build')
if op.exists('dist'):
shutil.rmtree('dist')
-print "Buiding the py2app plugin"
-
-os.system('python -u setup.py py2app')
\ No newline at end of file
+print_and_do('python -u setup.py py2app')
\ No newline at end of file