summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2014-01-02 15:03:16 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2014-01-02 15:03:16 +0530
commit750dd0e947cb23e007bd295ff6eeb1656878e9a1 (patch)
treedc01d51bbe732759568afa5f076bf5def28c6de1 /src
parentb818ebce9d25d7ce4376d1e261ff10c4906f0878 (diff)
Now, script doesn't barf out when there is no README.gNewSense file.
Diffstat (limited to 'src')
-rw-r--r--src/gns-deb-diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gns-deb-diff.py b/src/gns-deb-diff.py
index e23641f..ace3808 100644
--- a/src/gns-deb-diff.py
+++ b/src/gns-deb-diff.py
@@ -143,7 +143,7 @@ def read_gns_readme(package):
try:
readme_file = open(readme_file_path, 'r')
except IOError, e:
- print e
+ # README.gNewSense file not found.
return None # give up!
readme_content = readme_file.read().strip()