summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-10-23 18:26:02 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-10-23 18:26:02 +0200
commitd4eb0230531272d5e97cd5950425e5da4995f507 (patch)
treecc1d68a16c4809f327ec1a972fe9eefe3942fd44 /pym/repoman
parent386026046ddf6876e3b1d0910583d97659fe5afe (diff)
downloadportage-d4eb0230531272d5e97cd5950425e5da4995f507.tar.gz
portage-d4eb0230531272d5e97cd5950425e5da4995f507.tar.bz2
portage-d4eb0230531272d5e97cd5950425e5da4995f507.zip
Allow repoman to commit files, which have changes only in SVN properties.
Diffstat (limited to 'pym/repoman')
-rw-r--r--pym/repoman/utilities.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/repoman/utilities.py b/pym/repoman/utilities.py
index 5d32e0ce9..953c3cd2b 100644
--- a/pym/repoman/utilities.py
+++ b/pym/repoman/utilities.py
@@ -1,5 +1,5 @@
# repoman: Utilities
-# Copyright 2007 Gentoo Foundation
+# Copyright 2007-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
"""This module contains utility functions to help repoman find ebuilds to
@@ -75,7 +75,7 @@ def detect_vcs_conflicts(options, vcs):
for line in mylines:
if not line:
continue
- if line[0] not in "UPMARD": # Updates,Patches,Modified,Added,Removed/Replaced(svn),Deleted(svn)
+ if line[0] not in " UPMARD": # unmodified(svn),Updates,Patches,Modified,Added,Removed/Replaced(svn),Deleted(svn)
# Stray Manifest is fine, we will readd it anyway.
if line[0] == '?' and line[1:].lstrip() == 'Manifest':
continue