Package: catfish
Version: 0.3.2-2+deb7u1
Severity: serious
Justification: fails to run
Dear Maintainer,
After the last Stable update /usr/bin/catfish fails to run with a "no
such job" error.
bash: fg: %python%: no such job
Changing the contents in /usr/bin/catfish from
#!/usr/bin/env bash
%python% /usr/share/catfish/bin/catfish.py "$@"
to
#!/usr/bin/env bash
python /usr/share/catfish/catfish.py "$@"
Fixes the error.
Regards,
Alad
=== modified file 'NtfsConfig/Fstab/FstabHandler.py'
--- NtfsConfig/Fstab/FstabHandler.py 2010-07-30 23:24:29 +0000
+++ NtfsConfig/Fstab/FstabHandler.py 2012-09-08 20:27:52 +0000
@@ -516,7 +516,7 @@
name is default to the date of saving '''
if not name :
- name = time.time()
+ name = str(time.time())
if self.logchanges and self.lastsave_has_changed() :
logging.debug("Save log as %s", name)
self._logconf.add_section(name)