Remove debug leftovers.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 30 Apr 2010 20:42:58 +0000 (20:42 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 30 Apr 2010 20:42:58 +0000 (20:42 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3587 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/create_preset.py

index e2416c6681902c8369ae015502834f3005e89e8c..88fe9c1048104cf7a7dbf78a7ac7ac556b24ae55 100644 (file)
@@ -19,7 +19,6 @@ def findPath(start, target):
     pa = start
     while pa != "/":
         pa = os.path.abspath(pa + "/..")
-        print pa
         if os.path.exists(pa + "/" + target):
             return os.path.relpath(pa, start)
 
@@ -40,7 +39,7 @@ if s["WIZARD_VERSION"] < 3:
     print "Project version too old."
     exit(1)
 pname = s["PROJECT_NAME"] 
-preset_dir += pname + ".test"
+preset_dir += pname
 
 hw_path = findPath(preset_dir, "hw")
 if not hw_path: