mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-26 18:06:13 +01:00
add vim mode lines to avoid evil tab characters :-)
This commit is contained in:
parent
663ae2df1e
commit
32e99306b4
@ -330,3 +330,5 @@ class OscConfigParser(ConfigParser.SafeConfigParser):
|
|||||||
else:
|
else:
|
||||||
ret.append(str(line))
|
ret.append(str(line))
|
||||||
return '\n'.join(ret)
|
return '\n'.join(ret)
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -1 +1,3 @@
|
|||||||
__all__ = ['babysitter', 'core', 'commandline', 'oscerr', 'othermethods', 'build', 'fetch', 'meter']
|
__all__ = ['babysitter', 'core', 'commandline', 'oscerr', 'othermethods', 'build', 'fetch', 'meter']
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -161,3 +161,5 @@ def run(prg):
|
|||||||
except OSError, e:
|
except OSError, e:
|
||||||
print >>sys.stderr, e
|
print >>sys.stderr, e
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -733,3 +733,5 @@ def main(opts, argv):
|
|||||||
if bc_file:
|
if bc_file:
|
||||||
bc_file.close()
|
bc_file.close()
|
||||||
rpmlist_file.close()
|
rpmlist_file.close()
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -98,3 +98,5 @@ if __name__ == "__main__":
|
|||||||
checker.cleanup()
|
checker.cleanup()
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -1535,3 +1535,5 @@ def _get_trailing_whitespace(marker, s):
|
|||||||
i += 1
|
i += 1
|
||||||
return suffix
|
return suffix
|
||||||
|
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
# vim: sw=4 et
|
|
||||||
|
|
||||||
# Copyright (C) 2006 Novell Inc. All rights reserved.
|
# Copyright (C) 2006 Novell Inc. All rights reserved.
|
||||||
# This program is free software; it may be used, copied, modified
|
# This program is free software; it may be used, copied, modified
|
||||||
# and distributed under the terms of the GNU General Public Licence,
|
# and distributed under the terms of the GNU General Public Licence,
|
||||||
@ -5070,4 +5068,5 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
|||||||
continue
|
continue
|
||||||
exec open(os.path.join(plugin_dir, extfile))
|
exec open(os.path.join(plugin_dir, extfile))
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
# vim: sw=4 et
|
|
||||||
|
|
||||||
# Copyright (C) 2006 Novell Inc. All rights reserved.
|
# Copyright (C) 2006 Novell Inc. All rights reserved.
|
||||||
# This program is free software; it may be used, copied, modified
|
# This program is free software; it may be used, copied, modified
|
||||||
# and distributed under the terms of the GNU General Public Licence,
|
# and distributed under the terms of the GNU General Public Licence,
|
||||||
@ -4668,3 +4666,6 @@ def request_interactive_review(apiurl, request):
|
|||||||
finally:
|
finally:
|
||||||
if tmpfile is not None:
|
if tmpfile is not None:
|
||||||
tmpfile.close()
|
tmpfile.close()
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
|
||||||
|
@ -94,3 +94,5 @@ class TextMeter(BaseMeter):
|
|||||||
(text, 100, bar, total_size, total_time) + ' '
|
(text, 100, bar, total_size, total_time) + ' '
|
||||||
self.fo.write(out + '\n')
|
self.fo.write(out + '\n')
|
||||||
self.fo.flush()
|
self.fo.flush()
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -105,3 +105,5 @@ class PackageMissing(PackageError):
|
|||||||
def __init__(self, prj, pac, msg):
|
def __init__(self, prj, pac, msg):
|
||||||
PackageError.__init__(self, prj, pac)
|
PackageError.__init__(self, prj, pac)
|
||||||
self.msg = msg
|
self.msg = msg
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
@ -330,4 +330,4 @@ Would you like to
|
|||||||
elif r == '9':
|
elif r == '9':
|
||||||
print cert.as_text()
|
print cert.as_text()
|
||||||
|
|
||||||
# vim: syntax=python sw=4 et
|
# vim: sw=4 et
|
||||||
|
@ -5,3 +5,5 @@ class NoSecureSSLError(Exception):
|
|||||||
self.msg = msg
|
self.msg = msg
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.msg
|
return self.msg
|
||||||
|
|
||||||
|
# vim: sw=4 et
|
||||||
|
Loading…
Reference in New Issue
Block a user