~ubuntu-branches/ubuntu/raring/muse/raring

« back to all changes in this revision

Viewing changes to share/scripts/DoNothing

  • Committer: Bazaar Package Importer
  • Author(s): Eric Hedekar, Eric Hedekar, Fabrice Coutadeur
  • Date: 2010-01-26 02:32:14 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100126023214-8ez2g5d26d9p584j
Tags: 1.0.1-0ubuntu1
[ Eric Hedekar ]
* New upstream version (LP: #479688)
* Removed patches that were fixed in upstream source
  -[10_64bit_memcorruption_fix]
  -[10_gcc43_build_fixes]
  -[10_lash_private_api_fix]
  -[10_log2f_aliasing_fix]
  -[10_vamgui_init_fix]
  -[20_fix_const]

[ Fabrice Coutadeur ]
* debian/watch: added watch file
* debian/muse.desktop: deleted deprecated Encoding key, Application category
  and icon extension. This fix several warning with lintian and
  desktop-file-validate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# -*- coding: utf-8 -*-
 
3
import sys
 
4
testFile = file(sys.argv[1],"r")
 
5
inputEvents = testFile.readlines()
 
6
testFile.close()
 
7
 
 
8
outputEvents=[]
 
9
#loop through events
 
10
for line in inputEvents:
 
11
    outputEvents.append(line)
 
12
 
 
13
testFile = file(sys.argv[1],"w")
 
14
testFile.writelines(outputEvents)
 
15
testFile.close()